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

Side by Side Diff: sky/engine/v8_inspector/inspector_host.h

Issue 746713002: Move InspectorBackendMojo out of the blink namespace (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 2014 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 SKY_ENGINE_V8_INSPECTOR_INSPECTOR_HOST_H_
6 #define SKY_ENGINE_V8_INSPECTOR_INSPECTOR_HOST_H_
7
8 namespace mojo {
9 class Shell;
10 }
11 namespace v8 {
12 class Isolate;
13 class Context;
14 template <class T>
15 class Local;
16 }
17
18 namespace inspector {
19
20 class InspectorHost {
21 public:
22 virtual mojo::Shell* GetShell() = 0;
23 virtual v8::Isolate* GetIsolate() = 0;
24 virtual v8::Local<v8::Context> GetContext() = 0;
25 };
26
27 } // namespace inspector
28
29 #endif // SKY_ENGINE_V8_INSPECTOR_INSPECTOR_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698