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> |
11 | 11 |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/shared_memory.h" |
15 #include "base/process.h" | 16 #include "base/process.h" |
16 #include "base/shared_memory.h" | |
17 #include "base/string16.h" | 17 #include "base/string16.h" |
| 18 #include "base/threading/platform_thread.h" |
18 #include "base/threading/thread_checker.h" | 19 #include "base/threading/thread_checker.h" |
19 #include "base/threading/platform_thread.h" | |
20 #include "ui/base/ui_export.h" | 20 #include "ui/base/ui_export.h" |
21 | 21 |
22 #if defined(TOOLKIT_GTK) | 22 #if defined(TOOLKIT_GTK) |
23 #include <gdk/gdk.h> | 23 #include <gdk/gdk.h> |
24 #endif | 24 #endif |
25 | 25 |
26 #if defined(OS_ANDROID) | 26 #if defined(OS_ANDROID) |
27 #include <jni.h> | 27 #include <jni.h> |
28 | 28 |
29 #include "base/android/jni_android.h" | 29 #include "base/android/jni_android.h" |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 scoped_ptr<AuraX11Details> aurax11_details_; | 437 scoped_ptr<AuraX11Details> aurax11_details_; |
438 #endif | 438 #endif |
439 base::Callback<void(Buffer)> write_objects_callback_; | 439 base::Callback<void(Buffer)> write_objects_callback_; |
440 | 440 |
441 DISALLOW_COPY_AND_ASSIGN(Clipboard); | 441 DISALLOW_COPY_AND_ASSIGN(Clipboard); |
442 }; | 442 }; |
443 | 443 |
444 } // namespace ui | 444 } // namespace ui |
445 | 445 |
446 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_ | 446 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_ |
OLD | NEW |