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

Unified Diff: content/renderer/pepper_plugin_delegate_impl.cc

Issue 9212066: Modified the flash cipboard interface to add html clipboard support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 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
Index: content/renderer/pepper_plugin_delegate_impl.cc
diff --git a/content/renderer/pepper_plugin_delegate_impl.cc b/content/renderer/pepper_plugin_delegate_impl.cc
index 9946b6a604eef7f7e201f8c4ff9d2c507c94b361..3cb90517bdd551992ca824f4b286318740f5ddda 100644
--- a/content/renderer/pepper_plugin_delegate_impl.cc
+++ b/content/renderer/pepper_plugin_delegate_impl.cc
@@ -39,6 +39,7 @@
#include "content/renderer/media/audio_input_message_filter.h"
#include "content/renderer/media/audio_message_filter.h"
#include "content/renderer/media/pepper_platform_video_decoder_impl.h"
+#include "content/renderer/renderer_clipboard_client.h"
#include "content/renderer/media/video_capture_impl_manager.h"
#include "content/renderer/p2p/p2p_transport_impl.h"
#include "content/renderer/pepper_platform_context_3d_impl.h"
@@ -2116,3 +2117,8 @@ void PepperPluginDelegateImpl::UnSetAndDeleteLockTargetAdapter(
mouse_lock_instances_.erase(it);
}
}
+
+webkit_glue::ClipboardClient*
+ PepperPluginDelegateImpl::CreateClipboardClient() const {
viettrungluu 2012/02/06 21:29:29 Style nit: Apparently, the style in this file is t
raymes 2012/02/07 00:02:25 Done.
+ return new RendererClipboardClient;
+}

Powered by Google App Engine
This is Rietveld 408576698