| 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_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 6 #define CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 class ImageSerializationProcessor; | 59 class ImageSerializationProcessor; |
| 60 class RemoteCompositorBridge; | 60 class RemoteCompositorBridge; |
| 61 } | 61 } |
| 62 | 62 |
| 63 namespace gfx { | 63 namespace gfx { |
| 64 class ICCProfile; | 64 class ICCProfile; |
| 65 } | 65 } |
| 66 | 66 |
| 67 namespace media { | 67 namespace media { |
| 68 class KeySystemProperties; | 68 class KeySystemProperties; |
| 69 class RendererFactory; | |
| 70 } | 69 } |
| 71 | 70 |
| 72 namespace service_manager { | 71 namespace service_manager { |
| 73 class InterfaceRegistry; | 72 class InterfaceRegistry; |
| 74 } | 73 } |
| 75 | 74 |
| 76 namespace content { | 75 namespace content { |
| 77 class BrowserPluginDelegate; | 76 class BrowserPluginDelegate; |
| 78 class MediaStreamRendererFactory; | 77 class MediaStreamRendererFactory; |
| 79 class RemoteProtoChannel; | 78 class RemoteProtoChannel; |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 service_manager::InterfaceRegistry* interface_registry) {} | 369 service_manager::InterfaceRegistry* interface_registry) {} |
| 371 | 370 |
| 372 // Overwrites the given URL to use an HTML5 embed if possible. | 371 // Overwrites the given URL to use an HTML5 embed if possible. |
| 373 // An empty URL is returned if the URL is not overriden. | 372 // An empty URL is returned if the URL is not overriden. |
| 374 virtual GURL OverrideFlashEmbedWithHTML(const GURL& url); | 373 virtual GURL OverrideFlashEmbedWithHTML(const GURL& url); |
| 375 }; | 374 }; |
| 376 | 375 |
| 377 } // namespace content | 376 } // namespace content |
| 378 | 377 |
| 379 #endif // CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 378 #endif // CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |