| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class CommandLine; | 27 class CommandLine; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 class BrowserContext; | 31 class BrowserContext; |
| 32 class QuotaPermissionContext; | 32 class QuotaPermissionContext; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace extensions { | |
| 36 class BrowserPermissionsPolicyDelegate; | |
| 37 } | |
| 38 | |
| 39 namespace user_prefs { | 35 namespace user_prefs { |
| 40 class PrefRegistrySyncable; | 36 class PrefRegistrySyncable; |
| 41 } | 37 } |
| 42 | 38 |
| 43 namespace version_info { | 39 namespace version_info { |
| 44 enum class Channel; | 40 enum class Channel; |
| 45 } | 41 } |
| 46 | 42 |
| 47 namespace url { | 43 namespace url { |
| 48 class Origin; | 44 class Origin; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 // Vector of additional ChromeContentBrowserClientParts. | 361 // Vector of additional ChromeContentBrowserClientParts. |
| 366 // Parts are deleted in the reverse order they are added. | 362 // Parts are deleted in the reverse order they are added. |
| 367 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 363 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 368 | 364 |
| 369 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 365 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 370 | 366 |
| 371 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 367 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 372 }; | 368 }; |
| 373 | 369 |
| 374 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 370 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |