Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: headless/lib/renderer/devtools_isolated_world_ids.h

Issue 2873283002: [Reland] Allow headless TabSocket in isolated worlds & remove obsolete logic (Closed)
Patch Set: Changes for Sami Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698