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

Side by Side Diff: content/shell/shell_content_browser_client.h

Issue 8488015: Revert 110327 - Add ChromeBrowserParts for non main parts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/shell/shell_browser_main.h ('k') | content/shell/shell_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 15 matching lines...) Expand all
26 #endif 26 #endif
27 { 27 {
28 public: 28 public:
29 ShellContentBrowserClient(); 29 ShellContentBrowserClient();
30 virtual ~ShellContentBrowserClient(); 30 virtual ~ShellContentBrowserClient();
31 31
32 void set_shell_browser_main_parts(ShellBrowserMainParts* parts) { 32 void set_shell_browser_main_parts(ShellBrowserMainParts* parts) {
33 shell_browser_main_parts_ = parts; 33 shell_browser_main_parts_ = parts;
34 } 34 }
35 35
36 virtual BrowserMainParts* CreateBrowserMainParts( 36 virtual void CreateBrowserMainParts(
37 const content::MainFunctionParams& parameters) OVERRIDE; 37 const content::MainFunctionParams& parameters,
38 std::vector<BrowserMainParts*>* parts_list) OVERRIDE;
38 virtual RenderWidgetHostView* CreateViewForWidget( 39 virtual RenderWidgetHostView* CreateViewForWidget(
39 RenderWidgetHost* widget) OVERRIDE; 40 RenderWidgetHost* widget) OVERRIDE;
40 virtual TabContentsView* CreateTabContentsView( 41 virtual TabContentsView* CreateTabContentsView(
41 TabContents* tab_contents) OVERRIDE; 42 TabContents* tab_contents) OVERRIDE;
42 virtual void RenderViewHostCreated( 43 virtual void RenderViewHostCreated(
43 RenderViewHost* render_view_host) OVERRIDE; 44 RenderViewHost* render_view_host) OVERRIDE;
44 virtual void BrowserRenderProcessHostCreated( 45 virtual void BrowserRenderProcessHostCreated(
45 BrowserRenderProcessHost* host) OVERRIDE; 46 BrowserRenderProcessHost* host) OVERRIDE;
46 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; 47 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE;
47 virtual WebUIFactory* GetWebUIFactory() OVERRIDE; 48 virtual WebUIFactory* GetWebUIFactory() OVERRIDE;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE; 180 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE;
180 #endif 181 #endif
181 182
182 private: 183 private:
183 ShellBrowserMainParts* shell_browser_main_parts_; 184 ShellBrowserMainParts* shell_browser_main_parts_;
184 }; 185 };
185 186
186 } // namespace content 187 } // namespace content
187 188
188 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 189 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/shell/shell_browser_main.h ('k') | content/shell/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698