| 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 "base/platform_file.h" | 10 #include "base/platform_file.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 virtual WebKit::WebMediaStreamCenter* OverrideCreateWebMediaStreamCenter( | 44 virtual WebKit::WebMediaStreamCenter* OverrideCreateWebMediaStreamCenter( |
| 45 WebKit::WebMediaStreamCenterClient* client) OVERRIDE; | 45 WebKit::WebMediaStreamCenterClient* client) OVERRIDE; |
| 46 virtual WebKit::WebRTCPeerConnectionHandler* | 46 virtual WebKit::WebRTCPeerConnectionHandler* |
| 47 OverrideCreateWebRTCPeerConnectionHandler( | 47 OverrideCreateWebRTCPeerConnectionHandler( |
| 48 WebKit::WebRTCPeerConnectionHandlerClient* client) OVERRIDE; | 48 WebKit::WebRTCPeerConnectionHandlerClient* client) OVERRIDE; |
| 49 virtual WebKit::WebMIDIAccessor* OverrideCreateMIDIAccessor( | 49 virtual WebKit::WebMIDIAccessor* OverrideCreateMIDIAccessor( |
| 50 WebKit::WebMIDIAccessorClient* client) OVERRIDE; | 50 WebKit::WebMIDIAccessorClient* client) OVERRIDE; |
| 51 virtual WebKit::WebAudioDevice* OverrideCreateAudioDevice( | 51 virtual WebKit::WebAudioDevice* OverrideCreateAudioDevice( |
| 52 double sample_rate) OVERRIDE; | 52 double sample_rate) OVERRIDE; |
| 53 virtual WebKit::WebClipboard* OverrideWebClipboard() OVERRIDE; | 53 virtual WebKit::WebClipboard* OverrideWebClipboard() OVERRIDE; |
| 54 virtual WebKit::WebCrypto* OverrideWebCrypto() OVERRIDE; | |
| 55 virtual WebKit::WebThemeEngine* OverrideThemeEngine() OVERRIDE; | 54 virtual WebKit::WebThemeEngine* OverrideThemeEngine() OVERRIDE; |
| 56 virtual bool AllowBrowserPlugin( | 55 virtual bool AllowBrowserPlugin( |
| 57 WebKit::WebPluginContainer* container) OVERRIDE; | 56 WebKit::WebPluginContainer* container) OVERRIDE; |
| 58 | 57 |
| 59 private: | 58 private: |
| 60 void WebTestProxyCreated(RenderView* render_view, | 59 void WebTestProxyCreated(RenderView* render_view, |
| 61 WebTestRunner::WebTestProxyBase* proxy); | 60 WebTestRunner::WebTestProxyBase* proxy); |
| 62 | 61 |
| 63 scoped_ptr<ShellRenderProcessObserver> shell_observer_; | 62 scoped_ptr<ShellRenderProcessObserver> shell_observer_; |
| 64 scoped_ptr<MockWebClipboardImpl> clipboard_; | 63 scoped_ptr<MockWebClipboardImpl> clipboard_; |
| 65 }; | 64 }; |
| 66 | 65 |
| 67 } // namespace content | 66 } // namespace content |
| 68 | 67 |
| 69 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 68 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |