| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "content/public/common/content_client.h" | 14 #include "content/public/common/content_client.h" |
| 15 #include "content/public/common/media_stream_request.h" | 15 #include "content/public/common/media_stream_request.h" |
| 16 #include "content/public/common/window_container_type.h" | 16 #include "content/public/common/window_container_type.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" |
| 18 | 18 |
| 19 class BrowserURLHandler; | |
| 20 class CommandLine; | 19 class CommandLine; |
| 21 class FilePath; | 20 class FilePath; |
| 22 class GURL; | 21 class GURL; |
| 23 class PluginProcessHost; | 22 class PluginProcessHost; |
| 24 class ResourceDispatcherHost; | 23 class ResourceDispatcherHost; |
| 25 class SkBitmap; | 24 class SkBitmap; |
| 26 struct WebPreferences; | 25 struct WebPreferences; |
| 27 | 26 |
| 28 namespace content { | 27 namespace content { |
| 29 class AccessTokenStore; | 28 class AccessTokenStore; |
| 30 class BrowserMainParts; | 29 class BrowserMainParts; |
| 30 class BrowserURLHandler; |
| 31 class RenderProcessHost; | 31 class RenderProcessHost; |
| 32 class SiteInstance; | 32 class SiteInstance; |
| 33 class SpeechRecognitionManagerDelegate; | 33 class SpeechRecognitionManagerDelegate; |
| 34 class WebContents; | 34 class WebContents; |
| 35 class WebContentsView; | 35 class WebContentsView; |
| 36 struct MainFunctionParams; | 36 struct MainFunctionParams; |
| 37 struct ShowDesktopNotificationHostMsgParams; | 37 struct ShowDesktopNotificationHostMsgParams; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace crypto { | 40 namespace crypto { |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 // This is called on a worker thread. | 403 // This is called on a worker thread. |
| 404 virtual | 404 virtual |
| 405 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 405 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 406 const GURL& url) = 0; | 406 const GURL& url) = 0; |
| 407 #endif | 407 #endif |
| 408 }; | 408 }; |
| 409 | 409 |
| 410 } // namespace content | 410 } // namespace content |
| 411 | 411 |
| 412 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 412 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |