| 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_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "content/common/content_client.h" | |
| 13 #include "content/common/window_container_type.h" | 12 #include "content/common/window_container_type.h" |
| 13 #include "content/public/common/content_client.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" |
| 15 | 15 |
| 16 class AccessTokenStore; | 16 class AccessTokenStore; |
| 17 class BrowserRenderProcessHost; | 17 class BrowserRenderProcessHost; |
| 18 class BrowserURLHandler; | 18 class BrowserURLHandler; |
| 19 class CommandLine; | 19 class CommandLine; |
| 20 class DevToolsManager; | 20 class DevToolsManager; |
| 21 class FilePath; | 21 class FilePath; |
| 22 class GURL; | 22 class GURL; |
| 23 class MHTMLGenerationManager; | 23 class MHTMLGenerationManager; |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // This is called on a worker thread. | 338 // This is called on a worker thread. |
| 339 virtual | 339 virtual |
| 340 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 340 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 341 const GURL& url) = 0; | 341 const GURL& url) = 0; |
| 342 #endif | 342 #endif |
| 343 }; | 343 }; |
| 344 | 344 |
| 345 } // namespace content | 345 } // namespace content |
| 346 | 346 |
| 347 #endif // CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 347 #endif // CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |