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

Unified Diff: ui/views/examples/content_client/examples_browser_main_parts.h

Issue 288313012: Revert of Repurpose views+content example into a generic multiprocess views runtime (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
Index: ui/views/examples/content_client/examples_browser_main_parts.h
diff --git a/ui/views/examples/content_client/examples_browser_main_parts.h b/ui/views/examples/content_client/examples_browser_main_parts.h
new file mode 100644
index 0000000000000000000000000000000000000000..85ec1c61b1000dc681db8b9e510d461337723e1f
--- /dev/null
+++ b/ui/views/examples/content_client/examples_browser_main_parts.h
@@ -0,0 +1,61 @@
+// Copyright (c) 2012 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 UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
+#define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
+
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "content/public/browser/browser_main_parts.h"
+
+namespace content {
+class ShellBrowserContext;
+struct MainFunctionParams;
+}
+
+namespace wm {
+class WMState;
+class WMTestHelper;
+}
+
+namespace views {
+class ViewsDelegate;
+
+namespace examples {
+
+class ExamplesBrowserMainParts : public content::BrowserMainParts {
+ public:
+ explicit ExamplesBrowserMainParts(
+ const content::MainFunctionParams& parameters);
+ virtual ~ExamplesBrowserMainParts();
+
+ // content::BrowserMainParts:
+ virtual void ToolkitInitialized() OVERRIDE;
+ virtual void PreMainMessageLoopRun() OVERRIDE;
+ virtual bool MainMessageLoopRun(int* result_code) OVERRIDE;
+ virtual void PostMainMessageLoopRun() OVERRIDE;
+
+ content::ShellBrowserContext* browser_context() {
+ return browser_context_.get();
+ }
+
+ private:
+ scoped_ptr<content::ShellBrowserContext> browser_context_;
+
+ scoped_ptr<ViewsDelegate> views_delegate_;
+
+#if defined(OS_CHROMEOS)
+ // Enable a minimal set of views::corewm to be initialized.
+ scoped_ptr<wm::WMTestHelper> wm_test_helper_;
+#endif
+
+ scoped_ptr<wm::WMState> wm_state_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExamplesBrowserMainParts);
+};
+
+} // namespace examples
+} // namespace views
+
+#endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
« no previous file with comments | « ui/views/examples/content_client/DEPS ('k') | ui/views/examples/content_client/examples_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698