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_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
6 #define CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "content/public/renderer/content_renderer_client.h" | 10 #include "content/public/renderer/content_renderer_client.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 blink::WebMediaStreamCenterClient* client) OVERRIDE; | 39 blink::WebMediaStreamCenterClient* client) OVERRIDE; |
40 virtual blink::WebRTCPeerConnectionHandler* | 40 virtual blink::WebRTCPeerConnectionHandler* |
41 OverrideCreateWebRTCPeerConnectionHandler( | 41 OverrideCreateWebRTCPeerConnectionHandler( |
42 blink::WebRTCPeerConnectionHandlerClient* client) OVERRIDE; | 42 blink::WebRTCPeerConnectionHandlerClient* client) OVERRIDE; |
43 virtual blink::WebMIDIAccessor* OverrideCreateMIDIAccessor( | 43 virtual blink::WebMIDIAccessor* OverrideCreateMIDIAccessor( |
44 blink::WebMIDIAccessorClient* client) OVERRIDE; | 44 blink::WebMIDIAccessorClient* client) OVERRIDE; |
45 virtual blink::WebAudioDevice* OverrideCreateAudioDevice( | 45 virtual blink::WebAudioDevice* OverrideCreateAudioDevice( |
46 double sample_rate) OVERRIDE; | 46 double sample_rate) OVERRIDE; |
47 virtual blink::WebClipboard* OverrideWebClipboard() OVERRIDE; | 47 virtual blink::WebClipboard* OverrideWebClipboard() OVERRIDE; |
48 virtual blink::WebThemeEngine* OverrideThemeEngine() OVERRIDE; | 48 virtual blink::WebThemeEngine* OverrideThemeEngine() OVERRIDE; |
| 49 virtual bool IsPluginAllowedToUseCompositorAPI(const GURL& url) OVERRIDE; |
| 50 virtual bool IsPluginAllowedToUseVideoDecodeAPI(const GURL& url) OVERRIDE; |
| 51 virtual bool IsPluginAllowedToUseDevChannelAPIs() OVERRIDE; |
49 | 52 |
50 private: | 53 private: |
51 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); | 54 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); |
52 | 55 |
53 scoped_ptr<ShellRenderProcessObserver> shell_observer_; | 56 scoped_ptr<ShellRenderProcessObserver> shell_observer_; |
54 scoped_ptr<MockWebClipboardImpl> clipboard_; | 57 scoped_ptr<MockWebClipboardImpl> clipboard_; |
55 }; | 58 }; |
56 | 59 |
57 } // namespace content | 60 } // namespace content |
58 | 61 |
59 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 62 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |