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

Unified Diff: content/renderer/pepper/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/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 5f7f0e16c9a0e7c0cb738136bf3aa183d3ba4bb1..6a486bc4e0d0ee13c25850a3116fd67a5be04ead 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
@@ -35,6 +35,7 @@
#include "content/public/common/media_stream_request.h"
#include "content/public/renderer/content_renderer_client.h"
#include "content/renderer/gamepad_shared_memory_reader.h"
+#include "content/renderer/renderer_clipboard_client.h"
dmichael (off chromium) 2012/02/24 19:35:44 I think it should go somewhere down around 51? gcl
raymes 2012/02/24 21:38:17 Hmm, cpplint.py didn't complain but I fixed this.
#include "content/renderer/media/audio_hardware.h"
#include "content/renderer/media/audio_input_message_filter.h"
#include "content/renderer/media/audio_message_filter.h"
@@ -2369,3 +2370,8 @@ void PepperPluginDelegateImpl::UnSetAndDeleteLockTargetAdapter(
mouse_lock_instances_.erase(it);
}
}
+
+webkit_glue::ClipboardClient*
+ PepperPluginDelegateImpl::CreateClipboardClient() const {
+ return new RendererClipboardClient;
+}

Powered by Google App Engine
This is Rietveld 408576698