| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PARTS_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_PARTS_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_PARTS_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_PARTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 class RenderProcessHost; | 22 class RenderProcessHost; |
| 23 class RenderViewHost; | 23 class RenderViewHost; |
| 24 class SiteInstance; | 24 class SiteInstance; |
| 25 struct WebPreferences; | 25 struct WebPreferences; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace storage { | 28 namespace storage { |
| 29 class FileSystemBackend; | 29 class FileSystemBackend; |
| 30 } | 30 } |
| 31 | 31 |
| 32 class GURL; | |
| 33 class Profile; | 32 class Profile; |
| 34 | 33 |
| 35 // Implements a platform or feature specific part of ChromeContentBrowserClient. | 34 // Implements a platform or feature specific part of ChromeContentBrowserClient. |
| 36 // All the public methods corresponds to the methods of the same name in | 35 // All the public methods corresponds to the methods of the same name in |
| 37 // content::ContentBrowserClient. | 36 // content::ContentBrowserClient. |
| 38 class ChromeContentBrowserClientParts { | 37 class ChromeContentBrowserClientParts { |
| 39 public: | 38 public: |
| 40 virtual ~ChromeContentBrowserClientParts() {} | 39 virtual ~ChromeContentBrowserClientParts() {} |
| 41 | 40 |
| 42 virtual void RenderProcessWillLaunch(content::RenderProcessHost* host) {} | 41 virtual void RenderProcessWillLaunch(content::RenderProcessHost* host) {} |
| (...skipping 17 matching lines...) Expand all Loading... |
| 60 base::CommandLine* command_line, | 59 base::CommandLine* command_line, |
| 61 content::RenderProcessHost* process, | 60 content::RenderProcessHost* process, |
| 62 Profile* profile) {} | 61 Profile* profile) {} |
| 63 | 62 |
| 64 // Called when the ResourceDispatcherHost is created. | 63 // Called when the ResourceDispatcherHost is created. |
| 65 virtual void ResourceDispatcherHostCreated() {} | 64 virtual void ResourceDispatcherHostCreated() {} |
| 66 }; | 65 }; |
| 67 | 66 |
| 68 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_PARTS_H_ | 67 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_PARTS_H_ |
| 69 | 68 |
| OLD | NEW |