ChannelMojo: Let MessagePipeReader wait "peer closed" signal as well.
[chromium-blink-merge.git] / chromecast / app / cast_main_delegate.h
blob0fe77690126b78654bfb94ce4ebe9642fc2396b9
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.
5 #ifndef CHROMECAST_APP_CAST_MAIN_DELEGATE_H_
6 #define CHROMECAST_APP_CAST_MAIN_DELEGATE_H_
8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "chromecast/common/cast_content_client.h"
11 #include "content/public/app/content_main_delegate.h"
13 namespace content {
14 class BrowserMainRunner;
15 } // namespace content
17 namespace chromecast {
19 class CastResourceDelegate;
21 namespace shell {
23 class CastContentBrowserClient;
24 class CastContentRendererClient;
26 class CastMainDelegate : public content::ContentMainDelegate {
27 public:
28 CastMainDelegate();
29 ~CastMainDelegate() override;
31 // content::ContentMainDelegate implementation:
32 bool BasicStartupComplete(int* exit_code) override;
33 void PreSandboxStartup() override;
34 int RunProcess(
35 const std::string& process_type,
36 const content::MainFunctionParams& main_function_params) override;
37 #if !defined(OS_ANDROID)
38 void ZygoteForked() override;
39 #endif // !defined(OS_ANDROID)
40 content::ContentBrowserClient* CreateContentBrowserClient() override;
41 content::ContentRendererClient* CreateContentRendererClient() override;
43 private:
44 void InitializeResourceBundle();
46 scoped_ptr<CastContentBrowserClient> browser_client_;
47 scoped_ptr<CastContentRendererClient> renderer_client_;
48 scoped_ptr<CastResourceDelegate> resource_delegate_;
49 CastContentClient content_client_;
51 #if defined(OS_ANDROID)
52 scoped_ptr<content::BrowserMainRunner> browser_runner_;
53 #endif // defined(OS_ANDROID)
55 DISALLOW_COPY_AND_ASSIGN(CastMainDelegate);
58 } // namespace shell
59 } // namespace chromecast
61 #endif // CHROMECAST_APP_CAST_MAIN_DELEGATE_H_