summaryrefslogtreecommitdiffstats
path: root/content/renderer/renderer_clipboard_client.h
diff options
context:
space:
mode:
authorraymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-29 07:07:23 +0000
committerraymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-29 07:07:23 +0000
commit3d4c45fd066c79dbf8ba8d3c10a602c82a85dd4a (patch)
tree71098a8f90310596ff82d617708ef635f6d8791a /content/renderer/renderer_clipboard_client.h
parent7bb85356454cedf0be994e0019669db2c0d35858 (diff)
downloadchromium_src-3d4c45fd066c79dbf8ba8d3c10a602c82a85dd4a.zip
chromium_src-3d4c45fd066c79dbf8ba8d3c10a602c82a85dd4a.tar.gz
chromium_src-3d4c45fd066c79dbf8ba8d3c10a602c82a85dd4a.tar.bz2
Implemented Clear() functionality in the clipboard.
BUG=110796 TEST=Run ui_tests --gtest_filter=PPAPITest.*Clipboard* and ui_unittests --gtest_filter=*Clipboard*. Review URL: http://codereview.chromium.org/9349023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/renderer_clipboard_client.h')
-rw-r--r--content/renderer/renderer_clipboard_client.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/renderer/renderer_clipboard_client.h b/content/renderer/renderer_clipboard_client.h
index bf1de96..78c99ab 100644
--- a/content/renderer/renderer_clipboard_client.h
+++ b/content/renderer/renderer_clipboard_client.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -18,6 +18,7 @@ class RendererClipboardClient : public webkit_glue::ClipboardClient {
virtual uint64 GetSequenceNumber(ui::Clipboard::Buffer buffer) OVERRIDE;
virtual bool IsFormatAvailable(const ui::Clipboard::FormatType& format,
ui::Clipboard::Buffer buffer) OVERRIDE;
+ virtual void Clear(ui::Clipboard::Buffer buffer) OVERRIDE;
virtual void ReadAvailableTypes(ui::Clipboard::Buffer buffer,
std::vector<string16>* types,
bool* contains_filenames) OVERRIDE;