OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ | 5 #ifndef CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
6 #define CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ | 6 #define CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "chromecast/common/cast_content_client.h" | 10 #include "chromecast/common/cast_content_client.h" |
11 #include "content/public/app/content_main_delegate.h" | 11 #include "content/public/app/content_main_delegate.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 class BrowserMainRunner; | 14 class BrowserMainRunner; |
15 } // namespace content | 15 } // namespace content |
16 | 16 |
17 namespace chromecast { | 17 namespace chromecast { |
18 | 18 |
19 class CastResourceDelegate; | 19 class CastResourceDelegate; |
20 | 20 |
21 namespace shell { | 21 namespace shell { |
22 | 22 |
23 class CastContentBrowserClient; | 23 class CastContentBrowserClient; |
24 class CastContentRendererClient; | 24 class CastContentRendererClient; |
25 | 25 |
26 class CastMainDelegate : public content::ContentMainDelegate { | 26 class CastMainDelegate : public content::ContentMainDelegate { |
27 public: | 27 public: |
28 CastMainDelegate(); | 28 CastMainDelegate(); |
29 virtual ~CastMainDelegate(); | 29 ~CastMainDelegate() override; |
30 | 30 |
31 // content::ContentMainDelegate implementation: | 31 // content::ContentMainDelegate implementation: |
32 virtual bool BasicStartupComplete(int* exit_code) override; | 32 bool BasicStartupComplete(int* exit_code) override; |
33 virtual void PreSandboxStartup() override; | 33 void PreSandboxStartup() override; |
34 virtual int RunProcess( | 34 int RunProcess( |
35 const std::string& process_type, | 35 const std::string& process_type, |
36 const content::MainFunctionParams& main_function_params) override; | 36 const content::MainFunctionParams& main_function_params) override; |
37 #if !defined(OS_ANDROID) | 37 #if !defined(OS_ANDROID) |
38 virtual void ZygoteForked() override; | 38 void ZygoteForked() override; |
39 #endif // !defined(OS_ANDROID) | 39 #endif // !defined(OS_ANDROID) |
40 virtual content::ContentBrowserClient* CreateContentBrowserClient() override; | 40 content::ContentBrowserClient* CreateContentBrowserClient() override; |
41 virtual content::ContentRendererClient* | 41 content::ContentRendererClient* CreateContentRendererClient() override; |
42 CreateContentRendererClient() override; | |
43 | 42 |
44 private: | 43 private: |
45 void InitializeResourceBundle(); | 44 void InitializeResourceBundle(); |
46 | 45 |
47 scoped_ptr<CastContentBrowserClient> browser_client_; | 46 scoped_ptr<CastContentBrowserClient> browser_client_; |
48 scoped_ptr<CastContentRendererClient> renderer_client_; | 47 scoped_ptr<CastContentRendererClient> renderer_client_; |
49 scoped_ptr<CastResourceDelegate> resource_delegate_; | 48 scoped_ptr<CastResourceDelegate> resource_delegate_; |
50 CastContentClient content_client_; | 49 CastContentClient content_client_; |
51 | 50 |
52 #if defined(OS_ANDROID) | 51 #if defined(OS_ANDROID) |
53 scoped_ptr<content::BrowserMainRunner> browser_runner_; | 52 scoped_ptr<content::BrowserMainRunner> browser_runner_; |
54 #endif // defined(OS_ANDROID) | 53 #endif // defined(OS_ANDROID) |
55 | 54 |
56 DISALLOW_COPY_AND_ASSIGN(CastMainDelegate); | 55 DISALLOW_COPY_AND_ASSIGN(CastMainDelegate); |
57 }; | 56 }; |
58 | 57 |
59 } // namespace shell | 58 } // namespace shell |
60 } // namespace chromecast | 59 } // namespace chromecast |
61 | 60 |
62 #endif // CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ | 61 #endif // CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
OLD | NEW |