| 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_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_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 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "content/common/window_container_type.h" | 12 #include "content/public/common/window_container_type.h" |
| 13 #include "content/public/common/content_client.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; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 // Return a delegate to authenticate and unlock |module|. | 341 // Return a delegate to authenticate and unlock |module|. |
| 342 // This is called on a worker thread. | 342 // This is called on a worker thread. |
| 343 virtual | 343 virtual |
| 344 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 344 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 345 const GURL& url) = 0; | 345 const GURL& url) = 0; |
| 346 #endif | 346 #endif |
| 347 }; | 347 }; |
| 348 | 348 |
| 349 } // namespace content | 349 } // namespace content |
| 350 | 350 |
| 351 #endif // CONTENT_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 351 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |