| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/base/dragdrop/os_exchange_data.h" | 5 #include "ui/base/dragdrop/os_exchange_data.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace ui { | 9 namespace ui { |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 /////////////////////////////////////////////////////////////////////////////// | 63 /////////////////////////////////////////////////////////////////////////////// |
| 64 // OSExchangeData, public: | 64 // OSExchangeData, public: |
| 65 | 65 |
| 66 // static | 66 // static |
| 67 OSExchangeData::Provider* OSExchangeData::CreateProvider() { | 67 OSExchangeData::Provider* OSExchangeData::CreateProvider() { |
| 68 return new OSExchangeDataProviderAura(); | 68 return new OSExchangeDataProviderAura(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 // static | 71 // static |
| 72 void* OSExchangeData::RegisterCustomFormat(const std::string& type) { | 72 OSExchangeData::CustomFormat |
| 73 OSExchangeData::RegisterCustomFormat(const std::string& type) { |
| 73 // TODO(davemoore) Implement this for aura. | 74 // TODO(davemoore) Implement this for aura. |
| 74 return NULL; | 75 return NULL; |
| 75 } | 76 } |
| 76 | 77 |
| 77 } // namespace ui | 78 } // namespace ui |
| OLD | NEW |