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

Side by Side Diff: ui/base/clipboard/clipboard.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/aura/remote_root_window_host_win.h ('k') | ui/base/dragdrop/download_file_interface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_CLIPBOARD_CLIPBOARD_H_ 5 #ifndef UI_BASE_CLIPBOARD_CLIPBOARD_H_
6 #define UI_BASE_CLIPBOARD_CLIPBOARD_H_ 6 #define UI_BASE_CLIPBOARD_CLIPBOARD_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 15 matching lines...) Expand all
26 #include <jni.h> 26 #include <jni.h>
27 27
28 #include "base/android/jni_android.h" 28 #include "base/android/jni_android.h"
29 #include "base/android/scoped_java_ref.h" 29 #include "base/android/scoped_java_ref.h"
30 #endif 30 #endif
31 31
32 #if defined(USE_AURA) && defined(USE_X11) 32 #if defined(USE_AURA) && defined(USE_X11)
33 #include "base/memory/scoped_ptr.h" 33 #include "base/memory/scoped_ptr.h"
34 #endif 34 #endif
35 35
36 namespace base {
37 class FilePath;
38 }
39
36 namespace gfx { 40 namespace gfx {
37 class Size; 41 class Size;
38 } 42 }
39 43
40 class FilePath;
41 class SkBitmap; 44 class SkBitmap;
42 45
43 #if defined(TOOLKIT_GTK) 46 #if defined(TOOLKIT_GTK)
44 typedef struct _GtkClipboard GtkClipboard; 47 typedef struct _GtkClipboard GtkClipboard;
45 #endif 48 #endif
46 49
47 #ifdef __OBJC__ 50 #ifdef __OBJC__
48 @class NSString; 51 @class NSString;
49 #else 52 #else
50 class NSString; 53 class NSString;
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 class AuraX11Details; 385 class AuraX11Details;
383 scoped_ptr<AuraX11Details> aurax11_details_; 386 scoped_ptr<AuraX11Details> aurax11_details_;
384 #endif 387 #endif
385 388
386 DISALLOW_COPY_AND_ASSIGN(Clipboard); 389 DISALLOW_COPY_AND_ASSIGN(Clipboard);
387 }; 390 };
388 391
389 } // namespace ui 392 } // namespace ui
390 393
391 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_ 394 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_
OLDNEW
« no previous file with comments | « ui/aura/remote_root_window_host_win.h ('k') | ui/base/dragdrop/download_file_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698