Chromium Code Reviews| Index: shell/context.h |
| diff --git a/shell/context.h b/shell/context.h |
| index 73ad3a433f23082501479d6eccbc26b5995e8f94..ceb0a579573ebed2b9c7d4b90ec9c15b415a77b0 100644 |
| --- a/shell/context.h |
| +++ b/shell/context.h |
| @@ -14,14 +14,13 @@ |
| #include "shell/url_resolver.h" |
| namespace shell { |
| - |
| -class NativeApplicationLoader; |
| +class Tracer; |
| // The "global" context for the shell's main process. |
| class Context : public ApplicationManager::Delegate, |
| public mojo::embedder::ProcessDelegate { |
| public: |
| - Context(); |
| + explicit Context(Tracer* tracer = nullptr); |
| ~Context() override; |
| static void EnsureEmbedderIsInitialized(); |
| @@ -79,6 +78,7 @@ class Context : public ApplicationManager::Delegate, |
| void OnApplicationEnd(const GURL& url); |
| + Tracer* tracer_; |
|
viettrungluu
2015/04/27 17:04:11
Tracer* const?
|
| ApplicationManager application_manager_; |
| URLResolver url_resolver_; |