From 9cf12c316c486bccd4680a2366f00707917771d8 Mon Sep 17 00:00:00 2001 From: "dcheng@chromium.org" Date: Thu, 10 Nov 2011 19:28:07 +0000 Subject: Plumb through buffer type for clipboard sequence number requests. Some minor cleanup to remove BUFFER_DRAG as well, which is not used anywhere. BUG=73478 TEST=compiles Review URL: http://codereview.chromium.org/8511042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109476 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/tools/test_shell/simple_clipboard_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webkit/tools') diff --git a/webkit/tools/test_shell/simple_clipboard_impl.cc b/webkit/tools/test_shell/simple_clipboard_impl.cc index d55460a..4a44a80 100644 --- a/webkit/tools/test_shell/simple_clipboard_impl.cc +++ b/webkit/tools/test_shell/simple_clipboard_impl.cc @@ -35,8 +35,8 @@ ui::Clipboard* ClipboardGetClipboard() { return clipboard.Pointer(); } -uint64 ClipboardGetSequenceNumber() { - return ClipboardGetClipboard()->GetSequenceNumber(); +uint64 ClipboardGetSequenceNumber(ui::Clipboard::Buffer buffer) { + return ClipboardGetClipboard()->GetSequenceNumber(buffer); } bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format, -- cgit v1.1