| 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 <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "content/public/browser/file_descriptor_info.h" | 13 #include "content/public/browser/file_descriptor_info.h" |
| 14 #include "content/public/common/content_client.h" | 14 #include "content/public/common/content_client.h" |
| 15 #include "content/public/common/window_container_type.h" | 15 #include "content/public/common/window_container_type.h" |
| 16 #include "net/cookies/canonical_cookie.h" | 16 #include "net/cookies/canonical_cookie.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 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 19 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 20 #include "base/global_descriptors_posix.h" | 20 #include "base/global_descriptors_posix.h" |
| 21 #endif | 21 #endif |
| 22 | 22 |
| 23 | 23 |
| 24 class CommandLine; | 24 class CommandLine; |
| 25 class FilePath; | 25 class FilePath; |
| 26 class GURL; | 26 class GURL; |
| 27 class PluginProcessHost; | |
| 28 | 27 |
| 29 namespace webkit_glue { | 28 namespace webkit_glue { |
| 30 struct WebPreferences; | 29 struct WebPreferences; |
| 31 } | 30 } |
| 32 | 31 |
| 33 namespace crypto { | 32 namespace crypto { |
| 34 class CryptoModuleBlockingPasswordDelegate; | 33 class CryptoModuleBlockingPasswordDelegate; |
| 35 } | 34 } |
| 36 | 35 |
| 37 namespace gfx { | 36 namespace gfx { |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 // This is called on a worker thread. | 469 // This is called on a worker thread. |
| 471 virtual | 470 virtual |
| 472 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 471 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 473 const GURL& url); | 472 const GURL& url); |
| 474 #endif | 473 #endif |
| 475 }; | 474 }; |
| 476 | 475 |
| 477 } // namespace content | 476 } // namespace content |
| 478 | 477 |
| 479 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 478 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |