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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2166953006: Eliminate FrameMojoShell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chrome_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 const wchar_t* GetResourceDllName() override; 274 const wchar_t* GetResourceDllName() override;
275 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; 275 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override;
276 base::string16 GetAppContainerSidForSandboxType( 276 base::string16 GetAppContainerSidForSandboxType(
277 int sandbox_type) const override; 277 int sandbox_type) const override;
278 bool IsWin32kLockdownEnabledForMimeType( 278 bool IsWin32kLockdownEnabledForMimeType(
279 const std::string& mime_type) const override; 279 const std::string& mime_type) const override;
280 #endif 280 #endif
281 void ExposeInterfacesToRenderer( 281 void ExposeInterfacesToRenderer(
282 shell::InterfaceRegistry* registry, 282 shell::InterfaceRegistry* registry,
283 content::RenderProcessHost* render_process_host) override; 283 content::RenderProcessHost* render_process_host) override;
284 void RegisterFrameMojoShellInterfaces( 284 void ExposeInterfacesToMediaService(
285 shell::InterfaceRegistry* registry, 285 shell::InterfaceRegistry* registry,
286 content::RenderFrameHost* render_frame_host) override; 286 content::RenderFrameHost* render_frame_host) override;
287 void RegisterRenderFrameMojoInterfaces( 287 void RegisterRenderFrameMojoInterfaces(
288 shell::InterfaceRegistry* registry, 288 shell::InterfaceRegistry* registry,
289 content::RenderFrameHost* render_frame_host) override; 289 content::RenderFrameHost* render_frame_host) override;
290 void RegisterInProcessMojoApplications( 290 void RegisterInProcessMojoApplications(
291 StaticMojoApplicationMap* apps) override; 291 StaticMojoApplicationMap* apps) override;
292 void RegisterOutOfProcessMojoApplications( 292 void RegisterOutOfProcessMojoApplications(
293 OutOfProcessMojoApplicationMap* apps) override; 293 OutOfProcessMojoApplicationMap* apps) override;
294 void OpenURL(content::BrowserContext* browser_context, 294 void OpenURL(content::BrowserContext* browser_context,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 // Vector of additional ChromeContentBrowserClientParts. 347 // Vector of additional ChromeContentBrowserClientParts.
348 // Parts are deleted in the reverse order they are added. 348 // Parts are deleted in the reverse order they are added.
349 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 349 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
350 350
351 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 351 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
352 352
353 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 353 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
354 }; 354 };
355 355
356 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 356 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698