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/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
15 #include "base/process.h" | 15 #include "base/process.h" |
16 #include "base/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "base/threading/platform_thread.h" | 17 #include "base/threading/platform_thread.h" |
18 #include "base/threading/thread_checker.h" | 18 #include "base/threading/thread_checker.h" |
19 #include "ui/base/ui_export.h" | 19 #include "ui/base/ui_export.h" |
20 | 20 |
21 #if defined(TOOLKIT_GTK) | 21 #if defined(TOOLKIT_GTK) |
22 #include <gdk/gdk.h> | 22 #include <gdk/gdk.h> |
23 #endif | 23 #endif |
24 | 24 |
25 #if defined(OS_WIN) | 25 #if defined(OS_WIN) |
26 #include <objidl.h> | 26 #include <objidl.h> |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 class AuraX11Details; | 399 class AuraX11Details; |
400 scoped_ptr<AuraX11Details> aurax11_details_; | 400 scoped_ptr<AuraX11Details> aurax11_details_; |
401 #endif | 401 #endif |
402 | 402 |
403 DISALLOW_COPY_AND_ASSIGN(Clipboard); | 403 DISALLOW_COPY_AND_ASSIGN(Clipboard); |
404 }; | 404 }; |
405 | 405 |
406 } // namespace ui | 406 } // namespace ui |
407 | 407 |
408 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_ | 408 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_H_ |
OLD | NEW |