| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |