| Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| index 569f94c5202247c70acec0a420343effdc7c1289..5803ffbc4695a1d1db69b82a74d3b27baf783215 100644
|
| --- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| +++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| @@ -1280,6 +1280,12 @@ double PepperPluginDelegateImpl::GetLocalTimeZoneOffset(base::Time t) {
|
| return result;
|
| }
|
|
|
| +std::string PepperPluginDelegateImpl::GetDeviceID() {
|
| + std::string result;
|
| + render_view_->Send(new PepperMsg_GetDeviceID(&result));
|
| + return result;
|
| +}
|
| +
|
| base::SharedMemory* PepperPluginDelegateImpl::CreateAnonymousSharedMemory(
|
| uint32_t size) {
|
| if (size == 0)
|
|
|