| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "content/public/common/window_container_type.h" | 13 #include "content/public/common/window_container_type.h" |
| 14 #include "content/public/common/content_client.h" | 14 #include "content/public/common/content_client.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" |
| 16 | 16 |
| 17 class AccessTokenStore; | |
| 18 class BrowserURLHandler; | 17 class BrowserURLHandler; |
| 19 class CommandLine; | 18 class CommandLine; |
| 20 class FilePath; | 19 class FilePath; |
| 21 class GURL; | 20 class GURL; |
| 22 class MHTMLGenerationManager; | 21 class MHTMLGenerationManager; |
| 23 class PluginProcessHost; | 22 class PluginProcessHost; |
| 24 class QuotaPermissionContext; | 23 class QuotaPermissionContext; |
| 25 class RenderViewHost; | 24 class RenderViewHost; |
| 26 class RenderWidgetHost; | 25 class RenderWidgetHost; |
| 27 class RenderWidgetHostView; | 26 class RenderWidgetHostView; |
| 28 class ResourceDispatcherHost; | 27 class ResourceDispatcherHost; |
| 29 class SiteInstance; | 28 class SiteInstance; |
| 30 class SSLCertErrorHandler; | 29 class SSLCertErrorHandler; |
| 31 class SSLClientAuthHandler; | 30 class SSLClientAuthHandler; |
| 32 class SkBitmap; | 31 class SkBitmap; |
| 33 class TabContents; | 32 class TabContents; |
| 34 class TabContentsView; | 33 class TabContentsView; |
| 35 class WorkerProcessHost; | 34 class WorkerProcessHost; |
| 36 struct WebPreferences; | 35 struct WebPreferences; |
| 37 | 36 |
| 38 namespace content { | 37 namespace content { |
| 38 class AccessTokenStore; |
| 39 class BrowserMainParts; | 39 class BrowserMainParts; |
| 40 struct MainFunctionParams; | 40 struct MainFunctionParams; |
| 41 struct ShowDesktopNotificationHostMsgParams; | 41 struct ShowDesktopNotificationHostMsgParams; |
| 42 class RenderProcessHost; | 42 class RenderProcessHost; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace crypto { | 45 namespace crypto { |
| 46 class CryptoModuleBlockingPasswordDelegate; | 46 class CryptoModuleBlockingPasswordDelegate; |
| 47 } | 47 } |
| 48 | 48 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 // This is called on a worker thread. | 364 // This is called on a worker thread. |
| 365 virtual | 365 virtual |
| 366 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 366 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 367 const GURL& url) = 0; | 367 const GURL& url) = 0; |
| 368 #endif | 368 #endif |
| 369 }; | 369 }; |
| 370 | 370 |
| 371 } // namespace content | 371 } // namespace content |
| 372 | 372 |
| 373 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 373 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |