| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 namespace gfx { | 55 namespace gfx { |
| 56 class ImageSkia; | 56 class ImageSkia; |
| 57 } | 57 } |
| 58 | 58 |
| 59 namespace media { | 59 namespace media { |
| 60 class CdmFactory; | 60 class CdmFactory; |
| 61 } | 61 } |
| 62 | 62 |
| 63 namespace shell { | 63 namespace shell { |
| 64 class InterfaceRegistry; | 64 class InterfaceRegistry; |
| 65 class ShellClient; | 65 class Service; |
| 66 } | 66 } |
| 67 | 67 |
| 68 namespace net { | 68 namespace net { |
| 69 class CookieOptions; | 69 class CookieOptions; |
| 70 class NetLog; | 70 class NetLog; |
| 71 class SSLCertRequestInfo; | 71 class SSLCertRequestInfo; |
| 72 class SSLInfo; | 72 class SSLInfo; |
| 73 class URLRequest; | 73 class URLRequest; |
| 74 class URLRequestContext; | 74 class URLRequestContext; |
| 75 class URLRequestContextGetter; | 75 class URLRequestContextGetter; |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 // Allows an embedder to provide its own ExternalVideoSurfaceContainer | 783 // Allows an embedder to provide its own ExternalVideoSurfaceContainer |
| 784 // implementation. Return nullptr to disable external surface video. | 784 // implementation. Return nullptr to disable external surface video. |
| 785 virtual ExternalVideoSurfaceContainer* | 785 virtual ExternalVideoSurfaceContainer* |
| 786 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); | 786 OverrideCreateExternalVideoSurfaceContainer(WebContents* web_contents); |
| 787 #endif | 787 #endif |
| 788 }; | 788 }; |
| 789 | 789 |
| 790 } // namespace content | 790 } // namespace content |
| 791 | 791 |
| 792 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ | 792 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |