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

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

Issue 2079943002: Change RenderFrame to use InterfaceRegistry et al. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a2
Patch Set: . Created 4 years, 6 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
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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 const wchar_t* GetResourceDllName() override; 268 const wchar_t* GetResourceDllName() override;
269 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; 269 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override;
270 base::string16 GetAppContainerSidForSandboxType( 270 base::string16 GetAppContainerSidForSandboxType(
271 int sandbox_type) const override; 271 int sandbox_type) const override;
272 bool IsWin32kLockdownEnabledForMimeType( 272 bool IsWin32kLockdownEnabledForMimeType(
273 const std::string& mime_type) const override; 273 const std::string& mime_type) const override;
274 #endif 274 #endif
275 void RegisterRenderProcessMojoServices( 275 void RegisterRenderProcessMojoServices(
276 content::ServiceRegistry* registry, 276 content::ServiceRegistry* registry,
277 content::RenderProcessHost* render_process_host) override; 277 content::RenderProcessHost* render_process_host) override;
278 void RegisterFrameMojoShellServices( 278 void RegisterFrameMojoShellInterfaces(
279 content::ServiceRegistry* registry, 279 shell::InterfaceRegistry* registry,
280 content::RenderFrameHost* render_frame_host) override; 280 content::RenderFrameHost* render_frame_host) override;
281 void RegisterRenderFrameMojoServices( 281 void RegisterRenderFrameMojoInterfaces(
282 content::ServiceRegistry* registry, 282 shell::InterfaceRegistry* registry,
283 content::RenderFrameHost* render_frame_host) override; 283 content::RenderFrameHost* render_frame_host) override;
284 void RegisterInProcessMojoApplications( 284 void RegisterInProcessMojoApplications(
285 StaticMojoApplicationMap* apps) override; 285 StaticMojoApplicationMap* apps) override;
286 void RegisterOutOfProcessMojoApplications( 286 void RegisterOutOfProcessMojoApplications(
287 OutOfProcessMojoApplicationMap* apps) override; 287 OutOfProcessMojoApplicationMap* apps) override;
288 void OpenURL(content::BrowserContext* browser_context, 288 void OpenURL(content::BrowserContext* browser_context,
289 const content::OpenURLParams& params, 289 const content::OpenURLParams& params,
290 const base::Callback<void(content::WebContents*)>& callback) 290 const base::Callback<void(content::WebContents*)>& callback)
291 override; 291 override;
292 content::PresentationServiceDelegate* GetPresentationServiceDelegate( 292 content::PresentationServiceDelegate* GetPresentationServiceDelegate(
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 // Vector of additional ChromeContentBrowserClientParts. 341 // Vector of additional ChromeContentBrowserClientParts.
342 // Parts are deleted in the reverse order they are added. 342 // Parts are deleted in the reverse order they are added.
343 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 343 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
344 344
345 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 345 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
346 346
347 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 347 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
348 }; 348 };
349 349
350 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 350 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/mojo/chrome_service_registrar_android.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698