diff options
Diffstat (limited to 'chrome/browser/clipboard_dispatcher_gtk.cc')
-rw-r--r-- | chrome/browser/clipboard_dispatcher_gtk.cc | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/chrome/browser/clipboard_dispatcher_gtk.cc b/chrome/browser/clipboard_dispatcher_gtk.cc index 7fe0c3b..ce7e39b 100644 --- a/chrome/browser/clipboard_dispatcher_gtk.cc +++ b/chrome/browser/clipboard_dispatcher_gtk.cc @@ -1,33 +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 "chrome/browser/clipboard_dispatcher.h"
-#include "base/logging.h"
-
-bool ClipboardDispatcher::ReadAvailableTypes(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(Clipboard::Buffer buffer,
- const string16& type,
- string16* data,
- string16* metadata) {
- DCHECK(data);
- DCHECK(metadata);
- return false;
-}
-
-bool ClipboardDispatcher::ReadFilenames(Clipboard::Buffer buffer,
- std::vector<string16>* filenames) {
- DCHECK(filenames);
- filenames->clear();
- return false;
-}
-
+// 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 "chrome/browser/clipboard_dispatcher.h" +#include "base/logging.h" + +bool ClipboardDispatcher::ReadAvailableTypes(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(Clipboard::Buffer buffer, + const string16& type, + string16* data, + string16* metadata) { + DCHECK(data); + DCHECK(metadata); + return false; +} + +bool ClipboardDispatcher::ReadFilenames(Clipboard::Buffer buffer, + std::vector<string16>* filenames) { + DCHECK(filenames); + filenames->clear(); + return false; +} + |