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

Unified Diff: ppapi/proxy/ppb_text_input_proxy.cc

Issue 8333004: Rename InterfaceID to ApiID and move the file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years, 2 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 | « ppapi/proxy/ppb_text_input_proxy.h ('k') | ppapi/proxy/ppb_url_loader_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_text_input_proxy.cc
diff --git a/ppapi/proxy/ppb_text_input_proxy.cc b/ppapi/proxy/ppb_text_input_proxy.cc
index e4ada9b09eb6a9129615c74ceab922c6191314cb..7a489121f35d40997f5f22b07881627aee1147bb 100644
--- a/ppapi/proxy/ppb_text_input_proxy.cc
+++ b/ppapi/proxy/ppb_text_input_proxy.cc
@@ -27,19 +27,19 @@ PPB_TextInput_Proxy::AsPPB_TextInput_FunctionAPI() {
void PPB_TextInput_Proxy::SetTextInputType(PP_Instance instance,
PP_TextInput_Type type) {
dispatcher()->Send(new PpapiHostMsg_PPBTextInput_SetTextInputType(
- INTERFACE_ID_PPB_TEXT_INPUT, instance, type));
+ API_ID_PPB_TEXT_INPUT, instance, type));
}
void PPB_TextInput_Proxy::UpdateCaretPosition(PP_Instance instance,
const PP_Rect& caret,
const PP_Rect& bounding_box) {
dispatcher()->Send(new PpapiHostMsg_PPBTextInput_UpdateCaretPosition(
- INTERFACE_ID_PPB_TEXT_INPUT, instance, caret, bounding_box));
+ API_ID_PPB_TEXT_INPUT, instance, caret, bounding_box));
}
void PPB_TextInput_Proxy::CancelCompositionText(PP_Instance instance) {
dispatcher()->Send(new PpapiHostMsg_PPBTextInput_CancelCompositionText(
- INTERFACE_ID_PPB_TEXT_INPUT, instance));
+ API_ID_PPB_TEXT_INPUT, instance));
}
bool PPB_TextInput_Proxy::OnMessageReceived(const IPC::Message& msg) {
« no previous file with comments | « ppapi/proxy/ppb_text_input_proxy.h ('k') | ppapi/proxy/ppb_url_loader_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698