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 CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 26 matching lines...) Expand all Loading... |
37 #endif | 37 #endif |
38 | 38 |
39 #if defined(OS_POSIX) | 39 #if defined(OS_POSIX) |
40 #include "content/public/browser/file_descriptor_info.h" | 40 #include "content/public/browser/file_descriptor_info.h" |
41 #endif | 41 #endif |
42 | 42 |
43 class GURL; | 43 class GURL; |
44 | 44 |
45 namespace base { | 45 namespace base { |
46 class CommandLine; | 46 class CommandLine; |
47 class DictionaryValue; | |
48 class FilePath; | 47 class FilePath; |
49 } | 48 } |
50 | 49 |
51 namespace blink { | 50 namespace blink { |
52 struct WebWindowFeatures; | 51 struct WebWindowFeatures; |
53 } | 52 } |
54 | 53 |
55 namespace gfx { | 54 namespace gfx { |
56 class ImageSkia; | 55 class ImageSkia; |
57 } | 56 } |
(...skipping 11 matching lines...) Expand all Loading... |
69 class Service; | 68 class Service; |
70 } | 69 } |
71 | 70 |
72 namespace net { | 71 namespace net { |
73 class CookieOptions; | 72 class CookieOptions; |
74 class NetLog; | 73 class NetLog; |
75 class SSLCertRequestInfo; | 74 class SSLCertRequestInfo; |
76 class SSLInfo; | 75 class SSLInfo; |
77 class URLRequest; | 76 class URLRequest; |
78 class URLRequestContext; | 77 class URLRequestContext; |
79 class URLRequestContextGetter; | |
80 class X509Certificate; | |
81 } | 78 } |
82 | 79 |
83 namespace sandbox { | 80 namespace sandbox { |
84 class TargetPolicy; | 81 class TargetPolicy; |
85 } | 82 } |
86 | 83 |
87 namespace ui { | 84 namespace ui { |
88 class SelectFilePolicy; | 85 class SelectFilePolicy; |
89 } | 86 } |
90 | 87 |
91 namespace url { | 88 namespace url { |
92 class Origin; | 89 class Origin; |
93 } | 90 } |
94 | 91 |
95 namespace storage { | 92 namespace storage { |
96 class ExternalMountPoints; | |
97 class FileSystemBackend; | 93 class FileSystemBackend; |
98 class QuotaEvictionPolicy; | 94 class QuotaEvictionPolicy; |
99 } | 95 } |
100 | 96 |
101 namespace content { | 97 namespace content { |
102 | 98 |
103 enum class PermissionType; | 99 enum class PermissionType; |
104 class AccessTokenStore; | |
105 class BrowserChildProcessHost; | 100 class BrowserChildProcessHost; |
106 class BrowserContext; | 101 class BrowserContext; |
107 class BrowserMainParts; | 102 class BrowserMainParts; |
108 class BrowserPluginGuestDelegate; | |
109 class BrowserPpapiHost; | 103 class BrowserPpapiHost; |
110 class BrowserURLHandler; | 104 class BrowserURLHandler; |
111 class ClientCertificateDelegate; | 105 class ClientCertificateDelegate; |
112 class DevToolsManagerDelegate; | 106 class DevToolsManagerDelegate; |
113 class ExternalVideoSurfaceContainer; | |
114 class GpuProcessHost; | 107 class GpuProcessHost; |
115 class LocationProvider; | |
116 class MediaObserver; | 108 class MediaObserver; |
117 class MemoryCoordinatorDelegate; | 109 class MemoryCoordinatorDelegate; |
118 class NavigationHandle; | 110 class NavigationHandle; |
119 class NavigationUIData; | 111 class NavigationUIData; |
120 class PlatformNotificationService; | 112 class PlatformNotificationService; |
121 class PresentationServiceDelegate; | 113 class PresentationServiceDelegate; |
122 class QuotaPermissionContext; | 114 class QuotaPermissionContext; |
123 class RenderFrameHost; | 115 class RenderFrameHost; |
124 class RenderProcessHost; | 116 class RenderProcessHost; |
125 class RenderViewHost; | 117 class RenderViewHost; |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 #endif | 767 #endif |
776 | 768 |
777 // Returns an instance of MemoryCoordinatorDelegate. | 769 // Returns an instance of MemoryCoordinatorDelegate. |
778 virtual std::unique_ptr<MemoryCoordinatorDelegate> | 770 virtual std::unique_ptr<MemoryCoordinatorDelegate> |
779 GetMemoryCoordinatorDelegate(); | 771 GetMemoryCoordinatorDelegate(); |
780 }; | 772 }; |
781 | 773 |
782 } // namespace content | 774 } // namespace content |
783 | 775 |
784 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 776 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |