| 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 25 matching lines...) Expand all Loading... |
| 36 // Sets whether there is currently a user gesture. Defaults to false. | 36 // Sets whether there is currently a user gesture. Defaults to false. |
| 37 void set_has_user_gesture(bool gesture) { has_user_gesture_ = gesture; } | 37 void set_has_user_gesture(bool gesture) { has_user_gesture_ = gesture; } |
| 38 | 38 |
| 39 // RendererPpapiHost. | 39 // RendererPpapiHost. |
| 40 virtual ppapi::host::PpapiHost* GetPpapiHost() OVERRIDE; | 40 virtual ppapi::host::PpapiHost* GetPpapiHost() OVERRIDE; |
| 41 virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE; | 41 virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE; |
| 42 virtual RenderView* GetRenderViewForInstance( | 42 virtual RenderView* GetRenderViewForInstance( |
| 43 PP_Instance instance) const OVERRIDE; | 43 PP_Instance instance) const OVERRIDE; |
| 44 virtual WebKit::WebPluginContainer* GetContainerForInstance( | 44 virtual WebKit::WebPluginContainer* GetContainerForInstance( |
| 45 PP_Instance instance) const OVERRIDE; | 45 PP_Instance instance) const OVERRIDE; |
| 46 virtual webkit::ppapi::PluginDelegate::PlatformGraphics2D* |
| 47 GetPlatformGraphics2D(PP_Resource resource) OVERRIDE; |
| 46 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE; | 48 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE; |
| 49 virtual bool IsRunningInProcess() const OVERRIDE; |
| 47 | 50 |
| 48 private: | 51 private: |
| 49 ppapi::proxy::ResourceMessageTestSink sink_; | 52 ppapi::proxy::ResourceMessageTestSink sink_; |
| 50 ppapi::host::PpapiHost ppapi_host_; | 53 ppapi::host::PpapiHost ppapi_host_; |
| 51 | 54 |
| 52 RenderView* render_view_; | 55 RenderView* render_view_; |
| 53 PP_Instance pp_instance_; | 56 PP_Instance pp_instance_; |
| 54 | 57 |
| 55 bool has_user_gesture_; | 58 bool has_user_gesture_; |
| 56 | 59 |
| 57 DISALLOW_COPY_AND_ASSIGN(MockRendererPpapiHost); | 60 DISALLOW_COPY_AND_ASSIGN(MockRendererPpapiHost); |
| 58 }; | 61 }; |
| 59 | 62 |
| 60 } // namespace content | 63 } // namespace content |
| 61 | 64 |
| 62 #endif // CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ | 65 #endif // CONTENT_RENDERER_PEPPER_MOCK_RENDERER_PPAPI_HOST_H_ |
| OLD | NEW |