diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-20 19:55:39 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-20 19:55:39 +0000 |
commit | 13a8f498151ac4e1e771cb3d70d56f38848be04a (patch) | |
tree | a751efce3637a6705caf9dd526574855e0fc09c8 | |
parent | 40e67ab32b12fbcbbbca4cd0764c9796918e82ae (diff) | |
download | chromium_src-13a8f498151ac4e1e771cb3d70d56f38848be04a.zip chromium_src-13a8f498151ac4e1e771cb3d70d56f38848be04a.tar.gz chromium_src-13a8f498151ac4e1e771cb3d70d56f38848be04a.tar.bz2 |
Reland http://codereview.chromium.org/7452002/ again
Update chromoting input events. (Clang caught this. Thanks, Clang!)
Note I'm leaving in temporary backwards-compatibility.
BUG=None
TEST=ppapi tests
TBR=brettw,sergeyu
Review URL: http://codereview.chromium.org/7466008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93234 0039d316-1c4b-4281-b951-d872f2087c98
28 files changed, 223 insertions, 326 deletions
diff --git a/ppapi/api/ppp_instance.idl b/ppapi/api/ppp_instance.idl index da8f7a9..aeb95b1 100644 --- a/ppapi/api/ppp_instance.idl +++ b/ppapi/api/ppp_instance.idl @@ -9,7 +9,7 @@ */ label Chrome { - M14 = 0.5 + M14 = 1.0 }; /** @@ -161,11 +161,13 @@ interface PPP_Instance { * An instance's default condition is that it will not have focus. * * <strong>Note:</strong>Clicks on instances will give focus only if you - * handle the click event. Return <code>true</code> from HandleInputEvent to - * signal that the click event was handled. Otherwise the browser will bubble - * the event and give focus to the element on the page that actually did end - * up consuming it. If you're not getting focus, check to make sure you're - * returning true from the mouse click in <code>HandleInputEvent</code>. + * handle the click event. Return <code>true</code> from + * <code>HandleInputEvent</code> in <code>PPP_InputEvent</code> (or use + * unfiltered events) to signal that the click event was handled. Otherwise, + * the browser will bubble the event and give focus to the element on the page + * that actually did end up consuming it. If you're not getting focus, check + * to make sure you're returning true from the mouse click in + * <code>HandleInputEvent</code>. * * @param[in] instance A <code>PP_Instance</code> indentifying the instance * receiving the input event. @@ -179,37 +181,6 @@ interface PPP_Instance { [in] PP_Bool has_focus); /** - * HandleInputEvent() handles input events, such as keyboard events. This - * function returns <code>PP_TRUE</code> if the event was handled or - * <code>PP_FALSE</code> if it was not. - * - * If the event was handled, it will not be forwarded to the web page or - * browser. If it was not handled, it will bubble according to the normal - * rules. So it is important that a module respond accurately with whether - * event propagation should continue. - * - * Event propagation also controls focus. If you handle an event like a mouse - * event, typically the instance will be given focus. Returning false means - * that the click will be given to a lower part of the page and your module - * will not receive focus. This allows an instance to be partially - * transparent, where clicks on the transparent areas will behave like clicks - * to the underlying page. - * - * @param[in] instance A <code>PP_Instance</code> indentifying one instance - * of a module. - * - * @param[in] event The input event. - * - * @return <code>PP_TRUE</code> if <code>event</code> was handled, - * <code>PP_FALSE</code> otherwise. - */ - PP_Bool HandleInputEvent( - /* A PP_Instance indentifying one instance of a module. */ - [in] PP_Instance instance, - /* The event. */ - [in] PP_InputEvent event); - - /** * HandleDocumentLoad() is called after initialize for a full-frame * module that was instantiated based on the MIME type of a DOMWindow * navigation. This situation only applies to modules that are pre-registered diff --git a/ppapi/c/pp_input_event.h b/ppapi/c/pp_input_event.h index 0c7854c..c3defc9 100644 --- a/ppapi/c/pp_input_event.h +++ b/ppapi/c/pp_input_event.h @@ -192,44 +192,6 @@ struct PP_InputEvent_Wheel { PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_InputEvent_Wheel, 24); /** - * The PP_InputEventData union represents all input event data types. - */ -union PP_InputEventData { - struct PP_InputEvent_Key key; - struct PP_InputEvent_Character character; - struct PP_InputEvent_Mouse mouse; - struct PP_InputEvent_Wheel wheel; - /** - * This value allows new events to be added without changing the size of - * this struct. - */ - char padding[64]; -}; - -/** - * The PP_InputEvent struct represents all input events. - */ -struct PP_InputEvent { - /** This value represents the type of the event. */ - PP_InputEvent_Type type; - /** This value ensure the time_stamp is aligned on an 8-byte boundary - * relative to the start of the struct. Some compilers align doubles - * on 8-byte boundaries for 32-bit x86, and some align on 4-byte boundaries. - */ - int32_t padding; - /** - * This value represents the time that this event was generated. This value - * is not relative to any particular epoch; the most you can do is compare - * time stamps. - */ - PP_TimeTicks time_stamp; - /** - * This value represents the event type and its specific data. - */ - union PP_InputEventData u; -}; -PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_InputEvent, 80); -/** * @} */ diff --git a/ppapi/c/ppp_instance.h b/ppapi/c/ppp_instance.h index f38f0ae..31f93a3 100644 --- a/ppapi/c/ppp_instance.h +++ b/ppapi/c/ppp_instance.h @@ -38,8 +38,8 @@ * to handle events such as change of focus or input events (keyboard/mouse) * events. */ -#define PPP_INSTANCE_INTERFACE_0_5 "PPP_Instance;0.5" -#define PPP_INSTANCE_INTERFACE PPP_INSTANCE_INTERFACE_0_5 +#define PPP_INSTANCE_INTERFACE_1_0 "PPP_Instance;1.0" +#define PPP_INSTANCE_INTERFACE PPP_INSTANCE_INTERFACE_1_0 struct PPP_Instance { /** @@ -154,11 +154,13 @@ struct PPP_Instance { * An instance's default condition is that it will not have focus. * * <strong>Note:</strong>Clicks on instances will give focus only if you - * handle the click event. Return <code>true</code> from HandleInputEvent to - * signal that the click event was handled. Otherwise the browser will bubble - * the event and give focus to the element on the page that actually did end - * up consuming it. If you're not getting focus, check to make sure you're - * returning true from the mouse click in <code>HandleInputEvent</code>. + * handle the click event. Return <code>true</code> from + * <code>HandleInputEvent</code> in <code>PPP_InputEvent</code> (or use + * unfiltered events) to signal that the click event was handled. Otherwise, + * the browser will bubble the event and give focus to the element on the page + * that actually did end up consuming it. If you're not getting focus, check + * to make sure you're returning true from the mouse click in + * <code>HandleInputEvent</code>. * * @param[in] instance A <code>PP_Instance</code> indentifying the instance * receiving the input event. @@ -167,33 +169,6 @@ struct PPP_Instance { */ void (*DidChangeFocus)(PP_Instance instance, PP_Bool has_focus); /** - * HandleInputEvent() handles input events, such as keyboard events. This - * function returns <code>PP_TRUE</code> if the event was handled or - * <code>PP_FALSE</code> if it was not. - * - * If the event was handled, it will not be forwarded to the web page or - * browser. If it was not handled, it will bubble according to the normal - * rules. So it is important that a module respond accurately with whether - * event propagation should continue. - * - * Event propagation also controls focus. If you handle an event like a mouse - * event, typically the instance will be given focus. Returning false means - * that the click will be given to a lower part of the page and your module - * will not receive focus. This allows an instance to be partially - * transparent, where clicks on the transparent areas will behave like clicks - * to the underlying page. - * - * @param[in] instance A <code>PP_Instance</code> indentifying one instance - * of a module. - * - * @param[in] event The input event. - * - * @return <code>PP_TRUE</code> if <code>event</code> was handled, - * <code>PP_FALSE</code> otherwise. - */ - PP_Bool (*HandleInputEvent)(PP_Instance instance, - const struct PP_InputEvent* event); - /** * HandleDocumentLoad() is called after initialize for a full-frame * module that was instantiated based on the MIME type of a DOMWindow * navigation. This situation only applies to modules that are pre-registered @@ -227,7 +202,7 @@ struct PPP_Instance { */ -typedef struct PPP_Instance PPP_Instance_0_5; +typedef struct PPP_Instance PPP_Instance_1_0; #endif /* PPAPI_C_PPP_INSTANCE_H_ */ diff --git a/ppapi/cpp/instance.cc b/ppapi/cpp/instance.cc index 75e9a1f..9bb77dc 100644 --- a/ppapi/cpp/instance.cc +++ b/ppapi/cpp/instance.cc @@ -67,10 +67,6 @@ bool Instance::HandleDocumentLoad(const URLLoader& /*url_loader*/) { return false; } -bool Instance::HandleInputEvent(const PP_InputEvent& /*event*/) { - return false; -} - bool Instance::HandleInputEvent(const InputEvent& /*event*/) { return false; } diff --git a/ppapi/cpp/instance.h b/ppapi/cpp/instance.h index abf441f..f08c2d5 100644 --- a/ppapi/cpp/instance.h +++ b/ppapi/cpp/instance.h @@ -154,10 +154,7 @@ class Instance { /// @param[in] event The input event. /// /// @return true if @a event was handled, false otherwise. - virtual bool HandleInputEvent(const PP_InputEvent& event); - - /// @see InputEvent for an example - virtual bool HandleInputEvent(const InputEvent& event); + virtual bool HandleInputEvent(const pp::InputEvent& event); /// Notification of a data stream available after an instance was created /// based on the MIME type of a DOMWindow navigation. This only applies to diff --git a/ppapi/cpp/module.cc b/ppapi/cpp/module.cc index 927710a..b727e46 100644 --- a/ppapi/cpp/module.cc +++ b/ppapi/cpp/module.cc @@ -110,17 +110,6 @@ void Instance_DidChangeFocus(PP_Instance pp_instance, PP_Bool has_focus) { instance->DidChangeFocus(PP_ToBool(has_focus)); } -PP_Bool Instance_HandleInputEvent(PP_Instance pp_instance, - const PP_InputEvent* event) { - Module* module_singleton = Module::Get(); - if (!module_singleton) - return PP_FALSE; - Instance* instance = module_singleton->InstanceForPPInstance(pp_instance); - if (!instance) - return PP_FALSE; - return PP_FromBool(instance->HandleInputEvent(*event)); -} - PP_Bool Instance_HandleDocumentLoad(PP_Instance pp_instance, PP_Resource pp_url_loader) { Module* module_singleton = Module::Get(); @@ -137,7 +126,6 @@ static PPP_Instance instance_interface = { &Instance_DidDestroy, &Instance_DidChangeView, &Instance_DidChangeFocus, - &Instance_HandleInputEvent, &Instance_HandleDocumentLoad }; diff --git a/ppapi/examples/2d/graphics_2d_example.c b/ppapi/examples/2d/graphics_2d_example.c index ccec9a1..6495cdc 100644 --- a/ppapi/examples/2d/graphics_2d_example.c +++ b/ppapi/examples/2d/graphics_2d_example.c @@ -157,12 +157,6 @@ void Instance_DidChangeView(PP_Instance pp_instance, void Instance_DidChangeFocus(PP_Instance pp_instance, PP_Bool has_focus) { } -PP_Bool Instance_HandleInputEvent(PP_Instance pp_instance, - const struct PP_InputEvent* event) { - /* We don't handle any events. */ - return PP_FALSE; -} - PP_Bool Instance_HandleDocumentLoad(PP_Instance pp_instance, PP_Resource pp_url_loader) { return PP_FALSE; @@ -173,7 +167,6 @@ static struct PPP_Instance instance_interface = { &Instance_DidDestroy, &Instance_DidChangeView, &Instance_DidChangeFocus, - &Instance_HandleInputEvent, &Instance_HandleDocumentLoad }; diff --git a/ppapi/examples/2d/paint_manager_example.cc b/ppapi/examples/2d/paint_manager_example.cc index 8a5a2f5..c129f07 100644 --- a/ppapi/examples/2d/paint_manager_example.cc +++ b/ppapi/examples/2d/paint_manager_example.cc @@ -5,6 +5,7 @@ #include "ppapi/c/pp_input_event.h" #include "ppapi/cpp/graphics_2d.h" #include "ppapi/cpp/image_data.h" +#include "ppapi/cpp/input_event.h" #include "ppapi/cpp/instance.h" #include "ppapi/cpp/module.h" #include "ppapi/cpp/paint_manager.h" @@ -41,25 +42,26 @@ class MyInstance : public pp::Instance, public pp::PaintManager::Client { last_x_(0), last_y_(0) { paint_manager_.Initialize(this, this, false); + RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE); } - virtual bool HandleInputEvent(const PP_InputEvent& event) { - switch (event.type) { + virtual bool HandleInputEvent(const pp::InputEvent& event) { + switch (event.GetType()) { case PP_INPUTEVENT_TYPE_MOUSEDOWN: { - const PP_InputEvent_Mouse& mouse_event = event.u.mouse; + pp::MouseInputEvent mouse_event(event); // Update the square on a mouse down. - if (mouse_event.button == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { - UpdateSquare(static_cast<int>(mouse_event.x), - static_cast<int>(mouse_event.y)); + if (mouse_event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { + UpdateSquare(static_cast<int>(mouse_event.GetMousePosition().x()), + static_cast<int>(mouse_event.GetMousePosition().y())); } return true; } case PP_INPUTEVENT_TYPE_MOUSEMOVE: { - const PP_InputEvent_Mouse& mouse_event = event.u.mouse; + pp::MouseInputEvent mouse_event(event); // Update the square on a drag. - if (mouse_event.button == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { - UpdateSquare(static_cast<int>(mouse_event.x), - static_cast<int>(mouse_event.y)); + if (mouse_event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { + UpdateSquare(static_cast<int>(mouse_event.GetMousePosition().x()), + static_cast<int>(mouse_event.GetMousePosition().y())); } return true; } diff --git a/ppapi/examples/file_chooser/file_chooser.cc b/ppapi/examples/file_chooser/file_chooser.cc index 598095f..e1eb6bd 100644 --- a/ppapi/examples/file_chooser/file_chooser.cc +++ b/ppapi/examples/file_chooser/file_chooser.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,6 +7,7 @@ #include "ppapi/cpp/completion_callback.h" #include "ppapi/cpp/dev/file_chooser_dev.h" #include "ppapi/cpp/file_ref.h" +#include "ppapi/cpp/input_event.h" #include "ppapi/cpp/module.h" #include "ppapi/cpp/private/instance_private.h" #include "ppapi/cpp/private/var_private.h" @@ -16,15 +17,17 @@ class MyInstance : public pp::InstancePrivate { MyInstance(PP_Instance instance) : pp::InstancePrivate(instance) { callback_factory_.Initialize(this); + RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE); } - virtual bool HandleInputEvent(const PP_InputEvent& event) { - switch (event.type) { + virtual bool HandleInputEvent(const pp::InputEvent& event) { + switch (event.GetType()) { case PP_INPUTEVENT_TYPE_MOUSEDOWN: { - const PP_InputEvent_Mouse& mouse_event = event.u.mouse; - if (mouse_event.button == PP_INPUTEVENT_MOUSEBUTTON_LEFT) + pp::MouseInputEvent mouse_event(event); + if (mouse_event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_LEFT) ShowFileChooser(false); - else if (mouse_event.button == PP_INPUTEVENT_MOUSEBUTTON_RIGHT) + else if (mouse_event.GetMouseButton() + == PP_INPUTEVENT_MOUSEBUTTON_RIGHT) ShowFileChooser(true); else return false; diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc index 69e16ac..5de70c0 100644 --- a/ppapi/proxy/dispatcher.cc +++ b/ppapi/proxy/dispatcher.cc @@ -165,7 +165,7 @@ InterfaceList::InterfaceList() { AddPPP(PPP_Graphics3D_Proxy::GetInfo()); AddPPP(PPP_InputEvent_Proxy::GetInfo()); AddPPP(PPP_Instance_Private_Proxy::GetInfo()); - AddPPP(PPP_Instance_Proxy::GetInfo0_5()); + AddPPP(PPP_Instance_Proxy::GetInfo1_0()); } void InterfaceList::AddPPP(const InterfaceProxy::Info* info) { diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h index 41853ae..f4739e8 100644 --- a/ppapi/proxy/ppapi_messages.h +++ b/ppapi/proxy/ppapi_messages.h @@ -293,10 +293,6 @@ IPC_MESSAGE_ROUTED4(PpapiMsg_PPPInstance_DidChangeView, IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, PP_Instance /* instance */, PP_Bool /* has_focus */) -IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent, - PP_Instance /* instance */, - PP_InputEvent /* event */, - PP_Bool /* result */) IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, PP_Instance /* instance */, pp::proxy::HostResource /* url_loader */, diff --git a/ppapi/proxy/ppapi_param_traits.cc b/ppapi/proxy/ppapi_param_traits.cc index 87c253b..29e51bb 100644 --- a/ppapi/proxy/ppapi_param_traits.cc +++ b/ppapi/proxy/ppapi_param_traits.cc @@ -171,30 +171,6 @@ void ParamTraits<PP_Flash_NetAddress>::Log(const param_type& p, l->append(" bytes)>"); } -// PP_InputEvent --------------------------------------------------------------- - -// static -void ParamTraits<PP_InputEvent>::Write(Message* m, const param_type& p) { - // PP_InputEvent is just POD so we can just memcpy it. - m->WriteData(reinterpret_cast<const char*>(&p), sizeof(PP_InputEvent)); -} - -// static -bool ParamTraits<PP_InputEvent>::Read(const Message* m, - void** iter, - param_type* r) { - const char* data; - int data_size; - if (!m->ReadData(iter, &data, &data_size)) - return false; - memcpy(r, data, sizeof(PP_InputEvent)); - return true; -} - -// static -void ParamTraits<PP_InputEvent>::Log(const param_type& p, std::string* l) { -} - // PP_ObjectProperty ----------------------------------------------------------- // static diff --git a/ppapi/proxy/ppapi_param_traits.h b/ppapi/proxy/ppapi_param_traits.h index 0db47cd..736120f 100644 --- a/ppapi/proxy/ppapi_param_traits.h +++ b/ppapi/proxy/ppapi_param_traits.h @@ -11,7 +11,6 @@ #include "ipc/ipc_message_utils.h" #include "ipc/ipc_platform_file.h" #include "ppapi/c/pp_completion_callback.h" -#include "ppapi/c/pp_input_event.h" #include "ppapi/c/pp_rect.h" #include "ppapi/c/pp_var.h" @@ -62,14 +61,6 @@ struct ParamTraits<PP_Flash_NetAddress> { }; template<> -struct ParamTraits<PP_InputEvent> { - typedef PP_InputEvent param_type; - static void Write(Message* m, const param_type& p); - static bool Read(const Message* m, void** iter, param_type* r); - static void Log(const param_type& p, std::string* l); -}; - -template<> struct ParamTraits<PP_ObjectProperty> { typedef PP_ObjectProperty param_type; static void Write(Message* m, const param_type& p); diff --git a/ppapi/proxy/ppp_instance_proxy.cc b/ppapi/proxy/ppp_instance_proxy.cc index 99dcaab..cc2f9db 100644 --- a/ppapi/proxy/ppp_instance_proxy.cc +++ b/ppapi/proxy/ppp_instance_proxy.cc @@ -65,21 +65,6 @@ void DidChangeFocus(PP_Instance instance, PP_Bool has_focus) { instance, has_focus)); } -PP_Bool HandleInputEvent(PP_Instance instance, - const PP_InputEvent* event) { - PP_Bool result = PP_FALSE; - IPC::Message* msg = new PpapiMsg_PPPInstance_HandleInputEvent( - INTERFACE_ID_PPP_INSTANCE, instance, *event, &result); - // Make this message not unblock, to avoid re-entrancy problems when the - // plugin does a synchronous call to the renderer. This will force any - // synchronous calls from the plugin to complete before processing this - // message. We avoid deadlock by never un-setting the unblock flag on messages - // from the plugin to the renderer. - msg->set_unblock(false); - HostDispatcher::GetForInstance(instance)->Send(msg); - return result; -} - PP_Bool HandleDocumentLoad(PP_Instance instance, PP_Resource url_loader) { PP_Bool result = PP_FALSE; @@ -112,12 +97,11 @@ PP_Bool HandleDocumentLoad(PP_Instance instance, return result; } -static const PPP_Instance_0_5 instance_interface_0_5 = { +static const PPP_Instance_1_0 instance_interface_1_0 = { &DidCreate, &DidDestroy, &DidChangeView, &DidChangeFocus, - &HandleInputEvent, &HandleDocumentLoad }; @@ -135,13 +119,13 @@ PPP_Instance_Proxy::~PPP_Instance_Proxy() { } // static -const InterfaceProxy::Info* PPP_Instance_Proxy::GetInfo0_5() { +const InterfaceProxy::Info* PPP_Instance_Proxy::GetInfo1_0() { static const Info info = { - &instance_interface_0_5, - PPP_INSTANCE_INTERFACE_0_5, + &instance_interface_1_0, + PPP_INSTANCE_INTERFACE_1_0, INTERFACE_ID_PPP_INSTANCE, false, - &CreateInstanceProxy<PPP_Instance_0_5>, + &CreateInstanceProxy<PPP_Instance_1_0>, }; return &info; } @@ -157,8 +141,6 @@ bool PPP_Instance_Proxy::OnMessageReceived(const IPC::Message& msg) { OnMsgDidChangeView) IPC_MESSAGE_HANDLER(PpapiMsg_PPPInstance_DidChangeFocus, OnMsgDidChangeFocus) - IPC_MESSAGE_HANDLER(PpapiMsg_PPPInstance_HandleInputEvent, - OnMsgHandleInputEvent) IPC_MESSAGE_HANDLER(PpapiMsg_PPPInstance_HandleDocumentLoad, OnMsgHandleDocumentLoad) IPC_MESSAGE_UNHANDLED(handled = false) @@ -224,12 +206,6 @@ void PPP_Instance_Proxy::OnMsgDidChangeFocus(PP_Instance instance, combined_interface_->DidChangeFocus(instance, has_focus); } -void PPP_Instance_Proxy::OnMsgHandleInputEvent(PP_Instance instance, - const PP_InputEvent& event, - PP_Bool* result) { - *result = combined_interface_->HandleInputEvent(instance, &event); -} - void PPP_Instance_Proxy::OnMsgHandleDocumentLoad(PP_Instance instance, const HostResource& url_loader, PP_Bool* result) { diff --git a/ppapi/proxy/ppp_instance_proxy.h b/ppapi/proxy/ppp_instance_proxy.h index 9448332..b246c5c 100644 --- a/ppapi/proxy/ppp_instance_proxy.h +++ b/ppapi/proxy/ppp_instance_proxy.h @@ -16,7 +16,6 @@ #include "ppapi/proxy/interface_proxy.h" #include "ppapi/shared_impl/ppp_instance_combined.h" -struct PP_InputEvent; struct PP_Rect; namespace pp { @@ -35,8 +34,8 @@ class PPP_Instance_Proxy : public InterfaceProxy { } virtual ~PPP_Instance_Proxy(); - // Return the info for the 0.5 (latest, canonical) version of the interface. - static const Info* GetInfo0_5(); + // Return the info for the 1.0 (latest, canonical) version of the interface. + static const Info* GetInfo1_0(); ::ppapi::PPP_Instance_Combined* ppp_instance_target() const { return combined_interface_.get(); @@ -57,9 +56,6 @@ class PPP_Instance_Proxy : public InterfaceProxy { const PP_Rect& clip, PP_Bool fullscreen); void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus); - void OnMsgHandleInputEvent(PP_Instance instance, - const PP_InputEvent& event, - PP_Bool* result); void OnMsgHandleDocumentLoad(PP_Instance instance, const HostResource& url_loader, PP_Bool* result); diff --git a/ppapi/proxy/ppp_instance_proxy_test.cc b/ppapi/proxy/ppp_instance_proxy_test.cc index 00d776b..c49f1a2 100644 --- a/ppapi/proxy/ppp_instance_proxy_test.cc +++ b/ppapi/proxy/ppp_instance_proxy_test.cc @@ -60,13 +60,6 @@ void DidChangeFocus(PP_Instance instance, PP_Bool has_focus) { did_change_focus_called.Signal(); } -PP_InputEvent received_event; -PP_Bool HandleInputEvent(PP_Instance instance, const PP_InputEvent* event) { - received_instance = instance; - memcpy(&received_event, event, sizeof(*event));; - return bool_to_return; -} - PP_Bool HandleDocumentLoad(PP_Instance instance, PP_Resource url_loader) { // This one requires use of the PPB_URLLoader proxy and PPB_Core, plus a // resource tracker for the url_loader resource. @@ -92,15 +85,13 @@ void ResetReceived() { memset(&received_position, 0, sizeof(received_position)); memset(&received_clip, 0, sizeof(received_clip)); received_has_focus = PP_FALSE; - memset(&received_event, 0, sizeof(received_event)); } -PPP_Instance_0_5 ppp_instance_0_5 = { +PPP_Instance_1_0 ppp_instance_1_0 = { &DidCreate, &DidDestroy, &DidChangeView, &DidChangeFocus, - &HandleInputEvent, &HandleDocumentLoad }; @@ -120,15 +111,15 @@ class PPP_Instance_ProxyTest : public TwoWayTest { } }; -TEST_F(PPP_Instance_ProxyTest, PPPInstance0_5) { - plugin().RegisterTestInterface(PPP_INSTANCE_INTERFACE_0_5, &ppp_instance_0_5); +TEST_F(PPP_Instance_ProxyTest, PPPInstance1_0) { + plugin().RegisterTestInterface(PPP_INSTANCE_INTERFACE_1_0, &ppp_instance_1_0); host().RegisterTestInterface(PPB_FULLSCREEN_DEV_INTERFACE, &ppb_fullscreen_dev); - // Grab the host-side proxy for the 0.5 interface. - const PPP_Instance_0_5* ppp_instance = static_cast<const PPP_Instance_0_5*>( + // Grab the host-side proxy for the 1.0 interface. + const PPP_Instance_1_0* ppp_instance = static_cast<const PPP_Instance_1_0*>( host().host_dispatcher()->GetProxiedInterface( - PPP_INSTANCE_INTERFACE_0_5)); + PPP_INSTANCE_INTERFACE_1_0)); // Call each function in turn, make sure we get the expected values and // returns. @@ -183,20 +174,6 @@ TEST_F(PPP_Instance_ProxyTest, PPPInstance0_5) { EXPECT_EQ(received_instance, expected_instance); EXPECT_EQ(received_has_focus, expected_has_focus); - PP_InputEvent expected_event = { PP_INPUTEVENT_TYPE_KEYDOWN, // type - 0, // padding - 1.0, // time_stamp - { { 2, 3 } } }; // u (as PP_InputEvent_Key) - ResetReceived(); - EXPECT_EQ(bool_to_return, - ppp_instance->HandleInputEvent(expected_instance, &expected_event)); - EXPECT_EQ(received_instance, expected_instance); - ASSERT_EQ(received_event.type, expected_event.type); - // Ignore padding; it's okay if it's not serialized. - EXPECT_EQ(received_event.time_stamp, expected_event.time_stamp); - EXPECT_EQ(received_event.u.key.modifier, expected_event.u.key.modifier); - EXPECT_EQ(received_event.u.key.key_code, expected_event.u.key.key_code); - // TODO(dmichael): Need to mock out a resource Tracker to be able to test // HandleResourceLoad. It also requires // PPB_Core.AddRefResource and for PPB_URLLoader to be diff --git a/ppapi/shared_impl/ppp_instance_combined.cc b/ppapi/shared_impl/ppp_instance_combined.cc index ce3d2c4..ffb96a4 100644 --- a/ppapi/shared_impl/ppp_instance_combined.cc +++ b/ppapi/shared_impl/ppp_instance_combined.cc @@ -7,8 +7,20 @@ namespace ppapi { PPP_Instance_Combined::PPP_Instance_Combined( + const PPP_Instance_1_0& instance_if) + : PPP_Instance_1_0(instance_if), + HandleInputEvent_0_5(NULL) { +} + +PPP_Instance_Combined::PPP_Instance_Combined( const PPP_Instance_0_5& instance_if) - : PPP_Instance_0_5(instance_if) { + : PPP_Instance_1_0(), + HandleInputEvent_0_5(instance_if.HandleInputEvent) { + DidCreate = instance_if.DidCreate; + DidDestroy = instance_if.DidDestroy; + DidChangeView = instance_if.DidChangeView; + DidChangeFocus = instance_if.DidChangeFocus; + HandleDocumentLoad = instance_if.HandleDocumentLoad; } } // namespace ppapi diff --git a/ppapi/shared_impl/ppp_instance_combined.h b/ppapi/shared_impl/ppp_instance_combined.h index 33548d5..57b5beb 100644 --- a/ppapi/shared_impl/ppp_instance_combined.h +++ b/ppapi/shared_impl/ppp_instance_combined.h @@ -8,11 +8,51 @@ #include "base/basictypes.h" #include "ppapi/c/ppp_instance.h" +// TODO(dmichael): This is here only for temporary backwards compatibility so +// that NaCl and other plugins aren't broken while the change propagates. This +// needs to be deleted in 14, because we don't intend to support PPP_Instance. +// HandleInputEvent. +// --- Begin backwards compatibility code. +union PP_InputEventData { + struct PP_InputEvent_Key key; + struct PP_InputEvent_Character character; + struct PP_InputEvent_Mouse mouse; + struct PP_InputEvent_Wheel wheel; + char padding[64]; +}; +struct PP_InputEvent { + PP_InputEvent_Type type; + int32_t padding; + PP_TimeTicks time_stamp; + union PP_InputEventData u; +}; +PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_InputEvent, 80); + +#define PPP_INSTANCE_INTERFACE_0_5 "PPP_Instance;0.5" + +struct PPP_Instance_0_5 { + PP_Bool (*DidCreate)(PP_Instance instance, + uint32_t argc, + const char* argn[], + const char* argv[]); + void (*DidDestroy)(PP_Instance instance); + void (*DidChangeView)(PP_Instance instance, + const struct PP_Rect* position, + const struct PP_Rect* clip); + void (*DidChangeFocus)(PP_Instance instance, PP_Bool has_focus); + PP_Bool (*HandleInputEvent)(PP_Instance instance, + const struct PP_InputEvent* event); + PP_Bool (*HandleDocumentLoad)(PP_Instance instance, PP_Resource url_loader); +}; +// --- End backwards compatibility code. namespace ppapi { -struct PPP_Instance_Combined : public PPP_Instance_0_5 { +struct PPP_Instance_Combined : public PPP_Instance_1_0 { public: + explicit PPP_Instance_Combined(const PPP_Instance_1_0& instance_if); explicit PPP_Instance_Combined(const PPP_Instance_0_5& instance_if); + PP_Bool (*HandleInputEvent_0_5)(PP_Instance instance, + const struct PP_InputEvent* event); DISALLOW_COPY_AND_ASSIGN(PPP_Instance_Combined); }; diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc index e253641..0bfa05eb3 100644 --- a/remoting/client/plugin/chromoting_instance.cc +++ b/remoting/client/plugin/chromoting_instance.cc @@ -19,8 +19,8 @@ // crbug.com/74951 #include "content/renderer/p2p/ipc_network_manager.h" #include "content/renderer/p2p/ipc_socket_factory.h" -#include "ppapi/c/pp_input_event.h" #include "ppapi/cpp/completion_callback.h" +#include "ppapi/cpp/input_event.h" #include "ppapi/cpp/rect.h" // TODO(wez): Remove this when crbug.com/86353 is complete. #include "ppapi/cpp/private/var_private.h" @@ -55,6 +55,8 @@ ChromotingInstance::ChromotingInstance(PP_Instance pp_instance) : pp::InstancePrivate(pp_instance), initialized_(false), logger_(this) { + RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE); + RequestFilteringInputEvents(PP_INPUTEVENT_CLASS_KEYBOARD); } ChromotingInstance::~ChromotingInstance() { @@ -169,44 +171,51 @@ void ChromotingInstance::DidChangeView(const pp::Rect& position, view_->SetScreenSize(clip.width(), clip.height()); } -bool ChromotingInstance::HandleInputEvent(const PP_InputEvent& event) { +bool ChromotingInstance::HandleInputEvent(const pp::InputEvent& event) { DCHECK(CurrentlyOnPluginThread()); PepperInputHandler* pih = static_cast<PepperInputHandler*>(input_handler_.get()); - switch (event.type) { - case PP_INPUTEVENT_TYPE_MOUSEDOWN: - pih->HandleMouseButtonEvent(true, event.u.mouse); + switch (event.GetType()) { + case PP_INPUTEVENT_TYPE_MOUSEDOWN: { + pih->HandleMouseButtonEvent(true, pp::MouseInputEvent(event)); return true; + } - case PP_INPUTEVENT_TYPE_MOUSEUP: - pih->HandleMouseButtonEvent(false, event.u.mouse); + case PP_INPUTEVENT_TYPE_MOUSEUP: { + pih->HandleMouseButtonEvent(false, pp::MouseInputEvent(event)); return true; + } case PP_INPUTEVENT_TYPE_MOUSEMOVE: case PP_INPUTEVENT_TYPE_MOUSEENTER: - case PP_INPUTEVENT_TYPE_MOUSELEAVE: - pih->HandleMouseMoveEvent(event.u.mouse); + case PP_INPUTEVENT_TYPE_MOUSELEAVE: { + pih->HandleMouseMoveEvent(pp::MouseInputEvent(event)); return true; + } - case PP_INPUTEVENT_TYPE_CONTEXTMENU: + case PP_INPUTEVENT_TYPE_CONTEXTMENU: { // We need to return true here or else we'll get a local (plugin) context // menu instead of the mouseup event for the right click. return true; + } case PP_INPUTEVENT_TYPE_KEYDOWN: - case PP_INPUTEVENT_TYPE_KEYUP: + case PP_INPUTEVENT_TYPE_KEYUP: { + pp::KeyboardInputEvent key_event(event); logger_.VLog(3, "PP_INPUTEVENT_TYPE_KEY%s key=%d", - (event.type==PP_INPUTEVENT_TYPE_KEYDOWN ? "DOWN" : "UP"), - event.u.key.key_code); - pih->HandleKeyEvent(event.type == PP_INPUTEVENT_TYPE_KEYDOWN, - event.u.key); + (event.GetType()==PP_INPUTEVENT_TYPE_KEYDOWN ? "DOWN" : "UP"), + key_event.GetKeyCode()); + pih->HandleKeyEvent(event.GetType() == PP_INPUTEVENT_TYPE_KEYDOWN, + key_event); return true; + } - case PP_INPUTEVENT_TYPE_CHAR: - pih->HandleCharacterEvent(event.u.character); + case PP_INPUTEVENT_TYPE_CHAR: { + pih->HandleCharacterEvent(pp::KeyboardInputEvent(event)); return true; + } default: break; diff --git a/remoting/client/plugin/chromoting_instance.h b/remoting/client/plugin/chromoting_instance.h index d79254f..6d999c7 100644 --- a/remoting/client/plugin/chromoting_instance.h +++ b/remoting/client/plugin/chromoting_instance.h @@ -23,13 +23,13 @@ #include "remoting/protocol/connection_to_host.h" class MessageLoop; -struct PP_InputEvent; namespace base { class Thread; } // namespace base namespace pp { +class InputEvent; class Module; } // namespace pp @@ -64,7 +64,7 @@ class ChromotingInstance : public pp::InstancePrivate { virtual bool Init(uint32_t argc, const char* argn[], const char* argv[]); virtual void Connect(const ClientConfig& config); - virtual bool HandleInputEvent(const PP_InputEvent& event); + virtual bool HandleInputEvent(const pp::InputEvent& event); virtual void Disconnect(); virtual pp::Var GetInstanceObject(); diff --git a/remoting/client/plugin/pepper_input_handler.cc b/remoting/client/plugin/pepper_input_handler.cc index 452668e..f94a402 100644 --- a/remoting/client/plugin/pepper_input_handler.cc +++ b/remoting/client/plugin/pepper_input_handler.cc @@ -5,11 +5,15 @@ #include "remoting/client/plugin/pepper_input_handler.h" #include "ppapi/c/pp_input_event.h" +#include "ppapi/cpp/input_event.h" +#include "ppapi/cpp/point.h" #include "remoting/client/chromoting_view.h" #include "ui/gfx/point.h" namespace remoting { +using pp::KeyboardInputEvent; +using pp::MouseInputEvent; using protocol::KeyEvent; using protocol::MouseEvent; @@ -26,33 +30,31 @@ void PepperInputHandler::Initialize() { } void PepperInputHandler::HandleKeyEvent(bool keydown, - const PP_InputEvent_Key& event) { - SendKeyEvent(keydown, event.key_code); + const KeyboardInputEvent& event) { + SendKeyEvent(keydown, event.GetKeyCode()); } -void PepperInputHandler::HandleCharacterEvent( - const PP_InputEvent_Character& event) { +void PepperInputHandler::HandleCharacterEvent(const KeyboardInputEvent& event) { // TODO(garykac): Coordinate key and char events. } -void PepperInputHandler::HandleMouseMoveEvent( - const PP_InputEvent_Mouse& event) { - gfx::Point p(static_cast<int>(event.x), static_cast<int>(event.y)); +void PepperInputHandler::HandleMouseMoveEvent(const MouseInputEvent& event) { + gfx::Point p(static_cast<int>(event.GetMousePosition().x()), + static_cast<int>(event.GetMousePosition().y())); // Pepper gives co-ordinates in the plugin instance's co-ordinate system, // which may be different from the host desktop's co-ordinate system. p = view_->ConvertScreenToHost(p); SendMouseMoveEvent(p.x(), p.y()); } -void PepperInputHandler::HandleMouseButtonEvent( - bool button_down, - const PP_InputEvent_Mouse& event) { +void PepperInputHandler::HandleMouseButtonEvent(bool button_down, + const MouseInputEvent& event) { MouseEvent::MouseButton button = MouseEvent::BUTTON_UNDEFINED; - if (event.button == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { + if (event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_LEFT) { button = MouseEvent::BUTTON_LEFT; - } else if (event.button == PP_INPUTEVENT_MOUSEBUTTON_MIDDLE) { + } else if (event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_MIDDLE) { button = MouseEvent::BUTTON_MIDDLE; - } else if (event.button == PP_INPUTEVENT_MOUSEBUTTON_RIGHT) { + } else if (event.GetMouseButton() == PP_INPUTEVENT_MOUSEBUTTON_RIGHT) { button = MouseEvent::BUTTON_RIGHT; } diff --git a/remoting/client/plugin/pepper_input_handler.h b/remoting/client/plugin/pepper_input_handler.h index b99dd32..5a19f88 100644 --- a/remoting/client/plugin/pepper_input_handler.h +++ b/remoting/client/plugin/pepper_input_handler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -11,6 +11,11 @@ struct PP_InputEvent_Character; struct PP_InputEvent_Key; struct PP_InputEvent_Mouse; +namespace pp { +class KeyboardInputEvent; +class MouseInputEvent; +} // namespace pp + namespace remoting { class PepperInputHandler : public InputHandler { @@ -22,12 +27,12 @@ class PepperInputHandler : public InputHandler { virtual void Initialize(); - void HandleKeyEvent(bool keydown, const PP_InputEvent_Key& event); - void HandleCharacterEvent(const PP_InputEvent_Character& event); + void HandleKeyEvent(bool keydown, const pp::KeyboardInputEvent& event); + void HandleCharacterEvent(const pp::KeyboardInputEvent& event); - void HandleMouseMoveEvent(const PP_InputEvent_Mouse& event); + void HandleMouseMoveEvent(const pp::MouseInputEvent& event); void HandleMouseButtonEvent(bool button_down, - const PP_InputEvent_Mouse& event); + const pp::MouseInputEvent& event); private: DISALLOW_COPY_AND_ASSIGN(PepperInputHandler); diff --git a/webkit/plugins/ppapi/event_conversion.cc b/webkit/plugins/ppapi/event_conversion.cc index 41db456c..d09faef 100644 --- a/webkit/plugins/ppapi/event_conversion.cc +++ b/webkit/plugins/ppapi/event_conversion.cc @@ -13,6 +13,8 @@ #include "base/utf_string_conversion_utils.h" #include "ppapi/c/pp_input_event.h" #include "ppapi/shared_impl/input_event_impl.h" +// TODO(dmichael): Remove this include when PP_InputEvent is gone from m14. +#include "ppapi/shared_impl/ppp_instance_combined.h" #include "ppapi/shared_impl/time_conversion.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" #include "webkit/plugins/ppapi/common.h" diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index a3f7919..e0190c8 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -73,6 +73,10 @@ #include "ppapi/c/trusted/ppb_file_io_trusted.h" #include "ppapi/c/trusted/ppb_image_data_trusted.h" #include "ppapi/c/trusted/ppb_url_loader_trusted.h" +#include "ppapi/shared_impl/input_event_impl.h" +// TODO(dmichael): Delete this include after PPP_Instance_0_5 goes away in m14. +// This is just to get the PPP_INSTANCE_0_5 definition. +#include "ppapi/shared_impl/ppp_instance_combined.h" #include "ppapi/shared_impl/time_conversion.h" #include "ppapi/thunk/enter.h" #include "ppapi/thunk/thunk.h" @@ -532,8 +536,11 @@ PluginModule::GetInterfaceFunc PluginModule::GetLocalGetInterfaceFunc() { PluginInstance* PluginModule::CreateInstance(PluginDelegate* delegate) { PluginInstance* instance(NULL); - const void* ppp_instance = GetPluginInterface(PPP_INSTANCE_INTERFACE_0_5); + const void* ppp_instance = GetPluginInterface(PPP_INSTANCE_INTERFACE_1_0); if (ppp_instance) { + instance = PluginInstance::Create1_0(delegate, this, ppp_instance); + } else if ((ppp_instance = GetPluginInterface(PPP_INSTANCE_INTERFACE_0_5))) { + // TODO(dmichael): Remove support for 0.5 in m14. instance = PluginInstance::Create0_5(delegate, this, ppp_instance); } if (!instance) { diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.cc b/webkit/plugins/ppapi/ppapi_plugin_instance.cc index 3163a1c..8bc4e62 100644 --- a/webkit/plugins/ppapi/ppapi_plugin_instance.cc +++ b/webkit/plugins/ppapi/ppapi_plugin_instance.cc @@ -200,6 +200,18 @@ PluginInstance* PluginInstance::Create0_5(PluginDelegate* delegate, new ::ppapi::PPP_Instance_Combined(*interface)); } +// static +PluginInstance* PluginInstance::Create1_0(PluginDelegate* delegate, + PluginModule* module, + const void* ppp_instance_if_1_0) { + const PPP_Instance_1_0* interface = + static_cast<const PPP_Instance_1_0*>(ppp_instance_if_1_0); + return new PluginInstance( + delegate, + module, + new ::ppapi::PPP_Instance_Combined(*interface)); +} + PluginInstance::PluginInstance( PluginDelegate* delegate, PluginModule* module, @@ -419,16 +431,16 @@ bool PluginInstance::Initialize(WebPluginContainer* container, argc++; } - return PPBoolToBool(instance_interface_->DidCreate(pp_instance(), - argc, - argn.get(), - argv.get())); + return PP_ToBool(instance_interface_->DidCreate(pp_instance(), + argc, + argn.get(), + argv.get())); } bool PluginInstance::HandleDocumentLoad(PPB_URLLoader_Impl* loader) { Resource::ScopedResourceId resource(loader); - return PPBoolToBool(instance_interface_->HandleDocumentLoad(pp_instance(), - resource.id)); + return PP_ToBool(instance_interface_->HandleDocumentLoad(pp_instance(), + resource.id)); } bool PluginInstance::HandleInputEvent(const WebKit::WebInputEvent& event, @@ -459,7 +471,7 @@ bool PluginInstance::HandleInputEvent(const WebKit::WebInputEvent& event, new PPB_InputEvent_Impl(this, events[i])); PP_Resource resource = event_resource->GetReference(); - rv |= PPBoolToBool(plugin_input_event_interface_->HandleInputEvent( + rv |= PP_ToBool(plugin_input_event_interface_->HandleInputEvent( pp_instance(), event_resource->GetReference())); // Release the reference we took above. @@ -468,15 +480,19 @@ bool PluginInstance::HandleInputEvent(const WebKit::WebInputEvent& event, } } - // For compatibility, also send all input events through the old interface. + // For compatibility, also send all input events through the old interface, + // if it exists. // TODO(brettw) remove this. - std::vector<PP_InputEvent> pp_events; - CreatePPEvent(event, &pp_events); - - // Each input event may generate more than one PP_InputEvent. - for (size_t i = 0; i < pp_events.size(); i++) { - rv |= PPBoolToBool(instance_interface_->HandleInputEvent(pp_instance(), - &pp_events[i])); + if (instance_interface_->HandleInputEvent_0_5) { + std::vector<PP_InputEvent> pp_events; + CreatePPEvent(event, &pp_events); + + // Each input event may generate more than one PP_InputEvent. + for (size_t i = 0; i < pp_events.size(); i++) { + rv |= PP_ToBool( + instance_interface_->HandleInputEvent_0_5(pp_instance(), + &pp_events[i])); + } } if (cursor_.get()) @@ -533,7 +549,7 @@ void PluginInstance::SetWebKitFocus(bool has_focus) { if (PluginHasFocus() != old_plugin_focus) { delegate()->PluginFocusChanged(PluginHasFocus()); instance_interface_->DidChangeFocus(pp_instance(), - BoolToPPBool(PluginHasFocus())); + PP_FromBool(PluginHasFocus())); } } @@ -545,7 +561,7 @@ void PluginInstance::SetContentAreaFocus(bool has_focus) { has_content_area_focus_ = has_focus; if (PluginHasFocus() != old_plugin_focus) { instance_interface_->DidChangeFocus(pp_instance(), - BoolToPPBool(PluginHasFocus())); + PP_FromBool(PluginHasFocus())); } } @@ -605,7 +621,7 @@ string16 PluginInstance::GetSelectedText(bool html) { return string16(); PP_Var rv = plugin_selection_interface_->GetSelectedText(pp_instance(), - BoolToPPBool(html)); + PP_FromBool(html)); scoped_refptr<StringVar> string(StringVar::FromPPVar(rv)); Var::PluginReleasePPVar(rv); // Release the ref the plugin transfered to us. if (!string) @@ -635,7 +651,7 @@ void PluginInstance::Zoom(double factor, bool text_only) { scoped_refptr<PluginInstance> ref(this); if (!LoadZoomInterface()) return; - plugin_zoom_interface_->Zoom(pp_instance(), factor, BoolToPPBool(text_only)); + plugin_zoom_interface_->Zoom(pp_instance(), factor, PP_FromBool(text_only)); } bool PluginInstance::StartFind(const string16& search_text, @@ -646,11 +662,11 @@ bool PluginInstance::StartFind(const string16& search_text, if (!LoadFindInterface()) return false; find_identifier_ = identifier; - return PPBoolToBool( + return PP_ToBool( plugin_find_interface_->StartFind( pp_instance(), UTF16ToUTF8(search_text.c_str()).c_str(), - BoolToPPBool(case_sensitive))); + PP_FromBool(case_sensitive))); } void PluginInstance::SelectFindResult(bool forward) { @@ -658,7 +674,7 @@ void PluginInstance::SelectFindResult(bool forward) { scoped_refptr<PluginInstance> ref(this); if (LoadFindInterface()) plugin_find_interface_->SelectFindResult(pp_instance(), - BoolToPPBool(forward)); + PP_FromBool(forward)); } void PluginInstance::StopFind() { @@ -1502,7 +1518,7 @@ PP_Bool PluginInstance::SetFullscreen(PP_Instance instance, PP_Bool fullscreen) { // TODO(yzshen): Re-enable it once fullscreen mode is supported on Windows. #if !defined(OS_WIN) - SetFullscreen(PPBoolToBool(fullscreen), true); + SetFullscreen(PP_ToBool(fullscreen), true); return PP_TRUE; #else return PP_FALSE; diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.h b/webkit/plugins/ppapi/ppapi_plugin_instance.h index c122ada..a69c54a 100644 --- a/webkit/plugins/ppapi/ppapi_plugin_instance.h +++ b/webkit/plugins/ppapi/ppapi_plugin_instance.h @@ -86,11 +86,17 @@ class PluginInstance : public base::RefCounted<PluginInstance>, public ::ppapi::thunk::PPB_Instance_FunctionAPI, public ::ppapi::InstanceImpl { public: + // TODO(dmichael): Delete this for m14. // Create and return a PluginInstance object which supports the // PPP_Instance_0_5 interface. static PluginInstance* Create0_5(PluginDelegate* delegate, PluginModule* module, const void* ppp_instance_if_0_5); + // Create and return a PluginInstance object which supports the + // PPP_Instance_0_5 interface. + static PluginInstance* Create1_0(PluginDelegate* delegate, + PluginModule* module, + const void* ppp_instance_if_1_0); // Delete should be called by the WebPlugin before this destructor. virtual ~PluginInstance(); diff --git a/webkit/plugins/ppapi/ppapi_unittest.cc b/webkit/plugins/ppapi/ppapi_unittest.cc index 03a9793..ef083998 100644 --- a/webkit/plugins/ppapi/ppapi_unittest.cc +++ b/webkit/plugins/ppapi/ppapi_unittest.cc @@ -61,7 +61,6 @@ static PPP_Instance mock_instance_interface = { &Instance_DidDestroy, &Instance_DidChangeView, &Instance_DidChangeFocus, - &Instance_HandleInputEvent, &Instance_HandleDocumentLoad }; @@ -90,10 +89,10 @@ void PpapiUnittest::SetUp() { ASSERT_TRUE(module_->InitAsInternalPlugin(entry_points)); // Initialize the mock instance. - instance_ = PluginInstance::Create0_5( + instance_ = PluginInstance::Create1_0( delegate_.get(), module(), - GetMockInterface(PPP_INSTANCE_INTERFACE_0_5)); + GetMockInterface(PPP_INSTANCE_INTERFACE_1_0)); } @@ -103,7 +102,7 @@ void PpapiUnittest::TearDown() { } const void* PpapiUnittest::GetMockInterface(const char* interface_name) const { - if (strcmp(interface_name, PPP_INSTANCE_INTERFACE_0_5) == 0) + if (strcmp(interface_name, PPP_INSTANCE_INTERFACE_1_0) == 0) return &mock_instance_interface; return NULL; } diff --git a/webkit/plugins/ppapi/resource_tracker_unittest.cc b/webkit/plugins/ppapi/resource_tracker_unittest.cc index e73b243..75ea9983 100644 --- a/webkit/plugins/ppapi/resource_tracker_unittest.cc +++ b/webkit/plugins/ppapi/resource_tracker_unittest.cc @@ -141,8 +141,8 @@ TEST_F(ResourceTrackerTest, Ref) { TEST_F(ResourceTrackerTest, DeleteResourceWithInstance) { // Make a second instance (the test harness already creates & manages one). scoped_refptr<PluginInstance> instance2( - PluginInstance::Create0_5(delegate(), module(), - GetMockInterface(PPP_INSTANCE_INTERFACE_0_5))); + PluginInstance::Create1_0(delegate(), module(), + GetMockInterface(PPP_INSTANCE_INTERFACE_1_0))); PP_Instance pp_instance2 = instance2->pp_instance(); // Make two resources and take refs on behalf of the "plugin" for each. @@ -175,8 +175,8 @@ TEST_F(ResourceTrackerTest, DeleteResourceWithInstance) { TEST_F(ResourceTrackerTest, DeleteObjectVarWithInstance) { // Make a second instance (the test harness already creates & manages one). scoped_refptr<PluginInstance> instance2( - PluginInstance::Create0_5(delegate(), module(), - GetMockInterface(PPP_INSTANCE_INTERFACE_0_5))); + PluginInstance::Create1_0(delegate(), module(), + GetMockInterface(PPP_INSTANCE_INTERFACE_1_0))); PP_Instance pp_instance2 = instance2->pp_instance(); // Make an object var. |