Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: webkit/plugins/ppapi/resource_tracker.cc

Issue 8059006: Additional update on Pepper IME API and boilerplate thunk/proxy implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make win_shared happy. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/ppb_text_input_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/resource_tracker.cc
diff --git a/webkit/plugins/ppapi/resource_tracker.cc b/webkit/plugins/ppapi/resource_tracker.cc
index c69fb5f7416cab74f442968cca5ea665b0659e9d..770384bcb3ccc805b0d921105ebbd73e1596df65 100644
--- a/webkit/plugins/ppapi/resource_tracker.cc
+++ b/webkit/plugins/ppapi/resource_tracker.cc
@@ -21,6 +21,7 @@
#include "webkit/plugins/ppapi/ppb_char_set_impl.h"
#include "webkit/plugins/ppapi/ppb_cursor_control_impl.h"
#include "webkit/plugins/ppapi/ppb_font_impl.h"
+#include "webkit/plugins/ppapi/ppb_text_input_impl.h"
#include "webkit/plugins/ppapi/resource_creation_impl.h"
#include "webkit/plugins/ppapi/resource_helper.h"
@@ -144,6 +145,9 @@ void ResourceTracker::CleanupInstanceData(PP_Instance instance,
case ::ppapi::proxy::INTERFACE_ID_PPB_FONT:
proxy.reset(new PPB_Font_FunctionImpl(instance));
break;
+ case ::ppapi::proxy::INTERFACE_ID_PPB_TEXT_INPUT:
+ proxy.reset(new PPB_TextInput_Impl(instance));
+ break;
case ::ppapi::proxy::INTERFACE_ID_RESOURCE_CREATION:
proxy.reset(new ResourceCreationImpl(instance));
break;
@@ -323,4 +327,3 @@ void ResourceTracker::ClearSingletonOverride() {
} // namespace ppapi
} // namespace webkit
-
« no previous file with comments | « webkit/plugins/ppapi/ppb_text_input_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698