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

Side by Side Diff: ui/base/clipboard/clipboard_linux.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/clipboard/clipboard.cc ('k') | ui/base/clipboard/clipboard_mac.mm » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "ui/base/clipboard/clipboard.h" 5 #include "ui/base/clipboard/clipboard.h"
6 6
7 #include <gtk/gtk.h> 7 #include <gtk/gtk.h>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 12
13 #include "base/file_path.h" 13 #include "base/file_path.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/scoped_ptr.h" 15 #include "base/scoped_ptr.h"
16 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
17 #include "gfx/gtk_util.h" 17 #include "ui/gfx/gtk_util.h"
18 #include "gfx/size.h" 18 #include "ui/gfx/size.h"
19 19
20 namespace ui { 20 namespace ui {
21 21
22 namespace { 22 namespace {
23 23
24 const char kMimeBmp[] = "image/bmp"; 24 const char kMimeBmp[] = "image/bmp";
25 const char kMimeHtml[] = "text/html"; 25 const char kMimeHtml[] = "text/html";
26 const char kMimeText[] = "text/plain"; 26 const char kMimeText[] = "text/plain";
27 const char kMimeMozillaUrl[] = "text/x-moz-url"; 27 const char kMimeMozillaUrl[] = "text/x-moz-url";
28 const char kMimeWebkitSmartPaste[] = "chromium/x-webkit-paste"; 28 const char kMimeWebkitSmartPaste[] = "chromium/x-webkit-paste";
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 return clipboard_; 412 return clipboard_;
413 case BUFFER_SELECTION: 413 case BUFFER_SELECTION:
414 return primary_selection_; 414 return primary_selection_;
415 default: 415 default:
416 NOTREACHED(); 416 NOTREACHED();
417 return NULL; 417 return NULL;
418 } 418 }
419 } 419 }
420 420
421 } // namespace ui 421 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/clipboard/clipboard.cc ('k') | ui/base/clipboard/clipboard_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698