isolated_world_ids.h 648 B

12345678910111213141516171819202122
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef WEBLAYER_COMMON_ISOLATED_WORLD_IDS_H_
  5. #define WEBLAYER_COMMON_ISOLATED_WORLD_IDS_H_
  6. #include "content/public/common/isolated_world_ids.h"
  7. namespace weblayer {
  8. enum IsolatedWorldIDs {
  9. // Isolated world ID for internal WebLayer features.
  10. ISOLATED_WORLD_ID_WEBLAYER = content::ISOLATED_WORLD_ID_CONTENT_END + 1,
  11. // Isolated world ID for WebLayer translate.
  12. ISOLATED_WORLD_ID_TRANSLATE,
  13. };
  14. } // namespace weblayer
  15. #endif // WEBLAYER_COMMON_ISOLATED_WORLD_IDS_H_