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

Unified Diff: ui/views_content_client/views_content_browser_client.h

Issue 284113011: Repurpose views+content example into a generic multiprocess views runtime (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase for horrible copyright header change in revert CL 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
« no previous file with comments | « ui/views_content_client/README.chromium ('k') | ui/views_content_client/views_content_browser_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views_content_client/views_content_browser_client.h
diff --git a/ui/views/examples/content_client/examples_content_browser_client.h b/ui/views_content_client/views_content_browser_client.h
similarity index 48%
rename from ui/views/examples/content_client/examples_content_browser_client.h
rename to ui/views_content_client/views_content_browser_client.h
index 38e0d98005692f659c08f1ed8a1031dfc4a649d8..196e547e83201f13a67928492c2d83000908652d 100644
--- a/ui/views/examples/content_client/examples_content_browser_client.h
+++ b/ui/views_content_client/views_content_browser_client.h
@@ -1,9 +1,9 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
+// 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_CONTENT_BROWSER_CLIENT_H_
-#define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_CONTENT_BROWSER_CLIENT_H_
+#ifndef UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
+#define UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
#include "base/macros.h"
#include "content/public/browser/content_browser_client.h"
@@ -12,15 +12,16 @@ namespace content {
class ShellBrowserContext;
}
-namespace views {
-namespace examples {
+namespace ui {
-class ExamplesBrowserMainParts;
+class ViewsContentClient;
+class ViewsContentClientMainParts;
-class ExamplesContentBrowserClient : public content::ContentBrowserClient {
+class ViewsContentBrowserClient : public content::ContentBrowserClient {
public:
- ExamplesContentBrowserClient();
- virtual ~ExamplesContentBrowserClient();
+ explicit ViewsContentBrowserClient(
+ ViewsContentClient* views_content_client);
+ virtual ~ViewsContentBrowserClient();
// content::ContentBrowserClient:
virtual content::BrowserMainParts* CreateBrowserMainParts(
@@ -31,12 +32,12 @@ class ExamplesContentBrowserClient : public content::ContentBrowserClient {
content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
private:
- ExamplesBrowserMainParts* examples_browser_main_parts_;
+ ViewsContentClientMainParts* views_content_main_parts_;
+ ViewsContentClient* views_content_client_;
- DISALLOW_COPY_AND_ASSIGN(ExamplesContentBrowserClient);
+ DISALLOW_COPY_AND_ASSIGN(ViewsContentBrowserClient);
};
-} // namespace examples
-} // namespace views
+} // namespace ui
-#endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_CONTENT_BROWSER_CLIENT_H_
+#endif // UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
« no previous file with comments | « ui/views_content_client/README.chromium ('k') | ui/views_content_client/views_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698