OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 "ui/base/dragdrop/os_exchange_data.h" |
| 6 |
| 7 #if 0 |
| 8 |
| 9 #include "base/logging.h" |
| 10 |
| 11 /////////////////////////////////////////////////////////////////////////////// |
| 12 // OSExchangeData, public: |
| 13 |
| 14 // static |
| 15 OSExchangeData::Provider* OSExchangeData::CreateProvider() { |
| 16 NOTIMPLEMENTED(); |
| 17 |
| 18 } |
| 19 |
| 20 } // namespace ui |
| 21 |
| 22 #endif |
| 23 |
| 24 // FIXME - doesn't belong here |
| 25 |
| 26 namespace ui { |
| 27 |
| 28 void OSExchangeData::SetString(const base::string16& data) { |
| 29 |
| 30 } |
| 31 |
| 32 bool OSExchangeData::HasAnyFormat( |
| 33 int formats, |
| 34 const std::set<CustomFormat>& custom_formats) const { |
| 35 return false; |
| 36 } |
| 37 |
| 38 bool OSExchangeData::GetString(base::string16* data) const { |
| 39 return false; |
| 40 } |
| 41 |
| 42 } // namespace ui |
OLD | NEW |