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

Side by Side Diff: base/clipboard.h

Issue 20208: Lots of small nits to help to split off webkit.dll.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « no previous file | base/clipboard_win.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 BASE_CLIPBOARD_H_
6 #define BASE_CLIPBOARD_H_ 6 #define BASE_CLIPBOARD_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <utility>
11 #include <vector> 10 #include <vector>
12 11
13 #include "base/basictypes.h" 12 #include "base/process.h"
14 #include "base/gfx/size.h" 13 #include "base/gfx/size.h"
15 #include "base/shared_memory.h"
16 14
17 #if defined(OS_MACOSX) 15 #if defined(OS_MACOSX)
18 #if defined(__OBJC__) 16 #if defined(__OBJC__)
19 @class NSString; 17 @class NSString;
20 #else 18 #else
21 class NSString; 19 class NSString;
22 #endif 20 #endif
23 #endif 21 #endif
24 22
25 class Clipboard { 23 class Clipboard {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 void InsertMapping(const char* key, char* data, size_t data_len); 203 void InsertMapping(const char* key, char* data, size_t data_len);
206 204
207 TargetMap* clipboard_data_; 205 TargetMap* clipboard_data_;
208 GtkClipboard* clipboard_; 206 GtkClipboard* clipboard_;
209 #endif 207 #endif
210 208
211 DISALLOW_EVIL_CONSTRUCTORS(Clipboard); 209 DISALLOW_EVIL_CONSTRUCTORS(Clipboard);
212 }; 210 };
213 211
214 #endif // BASE_CLIPBOARD_H_ 212 #endif // BASE_CLIPBOARD_H_
OLDNEW
« no previous file with comments | « no previous file | base/clipboard_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698