| 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_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "content/public/renderer/renderer_ppapi_host.h" | 9 #include "content/public/renderer/renderer_ppapi_host.h" |
| 10 #include "content/renderer/pepper/content_renderer_pepper_host_factory.h" | 10 #include "content/renderer/pepper/content_renderer_pepper_host_factory.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 virtual base::ProcessId GetPluginPID() const OVERRIDE; | 50 virtual base::ProcessId GetPluginPID() const OVERRIDE; |
| 51 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE; | 51 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE; |
| 52 virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE; | 52 virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE; |
| 53 virtual gfx::Point PluginPointToRenderView( | 53 virtual gfx::Point PluginPointToRenderView( |
| 54 PP_Instance instance, | 54 PP_Instance instance, |
| 55 const gfx::Point& pt) const OVERRIDE; | 55 const gfx::Point& pt) const OVERRIDE; |
| 56 virtual IPC::PlatformFileForTransit ShareHandleWithRemote( | 56 virtual IPC::PlatformFileForTransit ShareHandleWithRemote( |
| 57 base::PlatformFile handle, | 57 base::PlatformFile handle, |
| 58 bool should_close_source) OVERRIDE; | 58 bool should_close_source) OVERRIDE; |
| 59 virtual bool IsRunningInProcess() const OVERRIDE; | 59 virtual bool IsRunningInProcess() const OVERRIDE; |
| 60 virtual void CreateBrowserResourceHost( |
| 61 PP_Instance instance, |
| 62 const IPC::Message& nested_msg, |
| 63 const base::Callback<void(int)>& callback) const OVERRIDE; |
| 60 | 64 |
| 61 private: | 65 private: |
| 62 ppapi::proxy::ResourceMessageTestSink sink_; | 66 ppapi::proxy::ResourceMessageTestSink sink_; |
| 63 ppapi::host::PpapiHost ppapi_host_; | 67 ppapi::host::PpapiHost ppapi_host_; |
| 64 | 68 |
| 65 RenderView* render_view_; | 69 RenderView* render_view_; |
| 66 PP_Instance pp_instance_; | 70 PP_Instance pp_instance_; |
| 67 | 71 |
| 68 bool has_user_gesture_; | 72 bool has_user_gesture_; |
| 69 | 73 |
| 70 DISALLOW_COPY_AND_ASSIGN(MockRendererPpapiHost); | 74 DISALLOW_COPY_AND_ASSIGN(MockRendererPpapiHost); |
| 71 }; | 75 }; |
| 72 | 76 |
| 73 } // namespace content | 77 } // namespace content |
| 74 | 78 |
| 75 #endif // CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ | 79 #endif // CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ |
| OLD | NEW |