blob: 7fe0c3b580b9d790bff5422e5a8e9882429a6f7e [file] [log] [blame]
[email protected]97c2c032010-07-07 22:43:411// Copyright (c) 2010 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/clipboard_dispatcher.h"
6#include "base/logging.h"
7
8bool ClipboardDispatcher::ReadAvailableTypes(Clipboard::Buffer buffer,
9 std::vector<string16>* types,
10 bool* contains_filenames) {
11 DCHECK(types);
12 DCHECK(contains_filenames);
13 types->clear();
14 *contains_filenames = false;
15 return false;
16}
17
18bool ClipboardDispatcher::ReadData(Clipboard::Buffer buffer,
19 const string16& type,
20 string16* data,
21 string16* metadata) {
22 DCHECK(data);
23 DCHECK(metadata);
24 return false;
25}
26
27bool ClipboardDispatcher::ReadFilenames(Clipboard::Buffer buffer,
28 std::vector<string16>* filenames) {
29 DCHECK(filenames);
30 filenames->clear();
31 return false;
32}
33