Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 | |
| 5 #ifndef HEADLESS_LIB_RENDERER_DEVTOOLS_ISOLATED_WORLD_IDS_H_ | |
| 6 #define HEADLESS_LIB_RENDERER_DEVTOOLS_ISOLATED_WORLD_IDS_H_ | |
| 7 | |
| 8 namespace headless { | |
| 9 | |
| 10 // Keep in sync with DOMWrapperWorld::WorldId. | |
| 11 enum { | |
| 12 kDevToolsFirstIsolatedWorldId = (1 << 29) + 1, | |
| 13 kDevToolsLastIsolatedWorldId = kDevToolsFirstIsolatedWorldId + 100, | |
| 14 }; | |
|
jochen (gone - plz use gerrit)
2017/05/19 13:34:05
why not put this file in public/web ? it's ok for
alex clarke (OOO till 29th)
2017/05/19 14:53:01
Done. I wonder if I should have pulled all the en
| |
| 15 | |
| 16 } // namespace headless | |
| 17 | |
| 18 #endif // HEADLESS_LIB_RENDERER_DEVTOOLS_ISOLATED_WORLD_IDS_H_ | |
| OLD | NEW |