summaryrefslogtreecommitdiffstats
path: root/content/browser/clipboard_dispatcher_gtk.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/clipboard_dispatcher_gtk.cc')
-rw-r--r--content/browser/clipboard_dispatcher_gtk.cc33
1 files changed, 33 insertions, 0 deletions
diff --git a/content/browser/clipboard_dispatcher_gtk.cc b/content/browser/clipboard_dispatcher_gtk.cc
new file mode 100644
index 0000000..88b57fe
--- /dev/null
+++ b/content/browser/clipboard_dispatcher_gtk.cc
@@ -0,0 +1,33 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/clipboard_dispatcher.h"
+
+#include "base/logging.h"
+
+bool ClipboardDispatcher::ReadAvailableTypes(ui::Clipboard::Buffer buffer,
+ std::vector<string16>* types,
+ bool* contains_filenames) {
+ DCHECK(types);
+ DCHECK(contains_filenames);
+ types->clear();
+ *contains_filenames = false;
+ return false;
+}
+
+bool ClipboardDispatcher::ReadData(ui::Clipboard::Buffer buffer,
+ const string16& type,
+ string16* data,
+ string16* metadata) {
+ DCHECK(data);
+ DCHECK(metadata);
+ return false;
+}
+
+bool ClipboardDispatcher::ReadFilenames(ui::Clipboard::Buffer buffer,
+ std::vector<string16>* filenames) {
+ DCHECK(filenames);
+ filenames->clear();
+ return false;
+}