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

Side by Side Diff: ui/base/dragdrop/os_exchange_data.h

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 5 #ifndef UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 12
13 #if defined(OS_WIN) 13 #if defined(OS_WIN)
14 #include <objidl.h> 14 #include <objidl.h>
15 #elif defined(TOOLKIT_GTK)
16 #include <gtk/gtk.h>
17 #endif 15 #endif
18 16
19 #include "base/basictypes.h" 17 #include "base/basictypes.h"
20 #include "base/files/file_path.h" 18 #include "base/files/file_path.h"
21 #include "base/memory/scoped_ptr.h" 19 #include "base/memory/scoped_ptr.h"
22 #include "ui/base/clipboard/clipboard.h" 20 #include "ui/base/clipboard/clipboard.h"
23 #include "ui/base/dragdrop/download_file_interface.h" 21 #include "ui/base/dragdrop/download_file_interface.h"
24 #include "ui/base/ui_base_export.h" 22 #include "ui/base/ui_base_export.h"
25 23
26 class GURL; 24 class GURL;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 private: 231 private:
234 // Provides the actual data. 232 // Provides the actual data.
235 scoped_ptr<Provider> provider_; 233 scoped_ptr<Provider> provider_;
236 234
237 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); 235 DISALLOW_COPY_AND_ASSIGN(OSExchangeData);
238 }; 236 };
239 237
240 } // namespace ui 238 } // namespace ui
241 239
242 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 240 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698