Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: ui/base/dragdrop/os_exchange_data_provider_mac.mm

Issue 187483005: Extending the Views-on-Mac experiment: whole app list grid. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: still compiles r263560 + crrev/195793005 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/dragdrop/drag_utils_mac.mm ('k') | ui/base/models/menu_separator_types.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « ui/base/dragdrop/drag_utils_mac.mm ('k') | ui/base/models/menu_separator_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698