OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 BASE_CLIPBOARD_H_ | 5 #ifndef APP_CLIPBOARD_CLIPBOARD_H_ |
6 #define BASE_CLIPBOARD_H_ | 6 #define APP_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/process.h" | 12 #include "base/process.h" |
13 #include "base/string16.h" | 13 #include "base/string16.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Size; | 16 class Size; |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 GtkClipboard* LookupBackingClipboard(Buffer clipboard) const; | 249 GtkClipboard* LookupBackingClipboard(Buffer clipboard) const; |
250 | 250 |
251 TargetMap* clipboard_data_; | 251 TargetMap* clipboard_data_; |
252 GtkClipboard* clipboard_; | 252 GtkClipboard* clipboard_; |
253 GtkClipboard* primary_selection_; | 253 GtkClipboard* primary_selection_; |
254 #endif | 254 #endif |
255 | 255 |
256 DISALLOW_COPY_AND_ASSIGN(Clipboard); | 256 DISALLOW_COPY_AND_ASSIGN(Clipboard); |
257 }; | 257 }; |
258 | 258 |
259 #endif // BASE_CLIPBOARD_H_ | 259 #endif // APP_CLIPBOARD_CLIPBOARD_H_ |
OLD | NEW |