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

Unified Diff: chromecast/shell/app/cast_main_delegate.h

Issue 223143003: Initial checkin of chromecast content embedder (cast_shell) and related build scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Additional presubmit clean-up. Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/shell/app/cast_main.cc ('k') | chromecast/shell/app/cast_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/shell/app/cast_main_delegate.h
diff --git a/chromecast/shell/app/cast_main_delegate.h b/chromecast/shell/app/cast_main_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..a9abc90ed4a80a4bc6d7de7cf0b75dc5584a8444
--- /dev/null
+++ b/chromecast/shell/app/cast_main_delegate.h
@@ -0,0 +1,45 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_
+#define CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_
+
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "chromecast/shell/common/cast_content_client.h"
+#include "content/public/app/content_main_delegate.h"
+
+namespace chromecast {
+namespace shell {
+
+class CastContentBrowserClient;
+class CastContentRendererClient;
+
+class CastMainDelegate : public content::ContentMainDelegate {
+ public:
+ CastMainDelegate();
+ virtual ~CastMainDelegate();
+
+ // content::ContentMainDelegate implementation:
+ virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
+ virtual void PreSandboxStartup() OVERRIDE;
+ virtual void ZygoteForked() OVERRIDE;
+ virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
+ virtual content::ContentRendererClient*
+ CreateContentRendererClient() OVERRIDE;
+
+ private:
+ static void InitializeResourceBundle();
tfarina 2014/07/22 20:11:50 Was this copied from content/shell/app/shell_main_
+
+ scoped_ptr<CastContentBrowserClient> browser_client_;
+ scoped_ptr<CastContentRendererClient> renderer_client_;
+ CastContentClient content_client_;
+
+ DISALLOW_COPY_AND_ASSIGN(CastMainDelegate);
+};
+
+} // namespace shell
+} // namespace chromecast
+
+#endif // CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_
« no previous file with comments | « chromecast/shell/app/cast_main.cc ('k') | chromecast/shell/app/cast_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698