OLD | NEW |
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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 const base::CommandLine& command_line, | 251 const base::CommandLine& command_line, |
252 int child_process_id, | 252 int child_process_id, |
253 content::FileDescriptorInfo* mappings) override; | 253 content::FileDescriptorInfo* mappings) override; |
254 #endif // defined(OS_ANDROID) | 254 #endif // defined(OS_ANDROID) |
255 #if defined(OS_WIN) | 255 #if defined(OS_WIN) |
256 const wchar_t* GetResourceDllName() override; | 256 const wchar_t* GetResourceDllName() override; |
257 void PreSpawnRenderer(sandbox::TargetPolicy* policy, bool* success) override; | 257 void PreSpawnRenderer(sandbox::TargetPolicy* policy, bool* success) override; |
258 base::string16 GetAppContainerSidForSandboxType( | 258 base::string16 GetAppContainerSidForSandboxType( |
259 int sandbox_type) const override; | 259 int sandbox_type) const override; |
260 #endif | 260 #endif |
261 void OverrideRenderFrameMojoServices( | 261 void OverrideFrameMojoShellServices( |
262 content::ServiceRegistry* registry, | 262 content::ServiceRegistry* registry, |
263 content::RenderFrameHost* render_frame_host) override; | 263 content::RenderFrameHost* render_frame_host) override; |
264 void RegisterMojoApplications(StaticMojoApplicationMap* apps) override; | 264 void RegisterMojoApplications(StaticMojoApplicationMap* apps) override; |
265 void OpenURL(content::BrowserContext* browser_context, | 265 void OpenURL(content::BrowserContext* browser_context, |
266 const content::OpenURLParams& params, | 266 const content::OpenURLParams& params, |
267 const base::Callback<void(content::WebContents*)>& callback) | 267 const base::Callback<void(content::WebContents*)>& callback) |
268 override; | 268 override; |
269 content::PresentationServiceDelegate* GetPresentationServiceDelegate( | 269 content::PresentationServiceDelegate* GetPresentationServiceDelegate( |
270 content::WebContents* web_contents) override; | 270 content::WebContents* web_contents) override; |
271 | 271 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 318 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
319 | 319 |
320 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 320 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
321 | 321 |
322 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 322 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
323 }; | 323 }; |
324 | 324 |
325 } // namespace chrome | 325 } // namespace chrome |
326 | 326 |
327 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 327 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |