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

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

Issue 8849003: Rename the shared_impl resource files to give them more regular names. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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_video_decoder_impl.cc ('k') | webkit/plugins/ppapi/url_request_info_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/resource_creation_impl.cc
===================================================================
--- webkit/plugins/ppapi/resource_creation_impl.cc (revision 113419)
+++ webkit/plugins/ppapi/resource_creation_impl.cc (working copy)
@@ -5,8 +5,8 @@
#include "webkit/plugins/ppapi/resource_creation_impl.h"
#include "ppapi/c/pp_size.h"
-#include "ppapi/shared_impl/audio_config_impl.h"
-#include "ppapi/shared_impl/input_event_impl.h"
+#include "ppapi/shared_impl/ppb_audio_config_shared.h"
+#include "ppapi/shared_impl/ppb_input_event_shared.h"
#include "ppapi/shared_impl/var.h"
#include "webkit/plugins/ppapi/common.h"
#include "webkit/plugins/ppapi/ppb_audio_impl.h"
@@ -36,7 +36,7 @@
#include "webkit/plugins/ppapi/ppb_websocket_impl.h"
using ppapi::InputEventData;
-using ppapi::InputEventImpl;
+using ppapi::PPB_InputEvent_Shared;
using ppapi::StringVar;
namespace webkit {
@@ -66,8 +66,8 @@
PP_Instance instance,
PP_AudioSampleRate sample_rate,
uint32_t sample_frame_count) {
- return ::ppapi::AudioConfigImpl::CreateAsImpl(instance, sample_rate,
- sample_frame_count);
+ return ::ppapi::PPB_AudioConfig_Shared::CreateAsImpl(instance, sample_rate,
+ sample_frame_count);
}
PP_Resource ResourceCreationImpl::CreateAudioTrusted(
@@ -196,8 +196,8 @@
data.character_text = string_var->value();
}
- return (new InputEventImpl(InputEventImpl::InitAsImpl(),
- instance, data))->GetReference();
+ return (new PPB_InputEvent_Shared(PPB_InputEvent_Shared::InitAsImpl(),
+ instance, data))->GetReference();
}
PP_Resource ResourceCreationImpl::CreateMouseInputEvent(
@@ -225,8 +225,8 @@
data.mouse_click_count = click_count;
data.mouse_movement = *mouse_movement;
- return (new InputEventImpl(InputEventImpl::InitAsImpl(),
- instance, data))->GetReference();
+ return (new PPB_InputEvent_Shared(PPB_InputEvent_Shared::InitAsImpl(),
+ instance, data))->GetReference();
}
PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance,
@@ -299,8 +299,8 @@
data.wheel_ticks = *wheel_ticks;
data.wheel_scroll_by_page = PP_ToBool(scroll_by_page);
- return (new InputEventImpl(InputEventImpl::InitAsImpl(),
- instance, data))->GetReference();
+ return (new PPB_InputEvent_Shared(PPB_InputEvent_Shared::InitAsImpl(),
+ instance, data))->GetReference();
}
} // namespace ppapi
Property changes on: webkit/plugins/ppapi/resource_creation_impl.cc
___________________________________________________________________
Deleted: svn:mergeinfo
Reverse-merged /branches/chrome_webkit_merge_branch/src/webkit/plugins/ppapi/resource_creation_impl.cc:r3734-4217,4606-5108,5177-5263
« no previous file with comments | « webkit/plugins/ppapi/ppb_video_decoder_impl.cc ('k') | webkit/plugins/ppapi/url_request_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698