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

Side by Side Diff: app/clipboard/clipboard_linux.cc

Issue 260003: Move the clipboard stuff out of base and into app/clipboard. I renamed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « app/clipboard/clipboard.cc ('k') | app/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) 2006-2008 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 #include "base/clipboard.h" 5 #include "app/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/gfx/size.h" 14 #include "base/gfx/size.h"
15 #include "base/scoped_ptr.h" 15 #include "base/scoped_ptr.h"
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 case BUFFER_SELECTION: 401 case BUFFER_SELECTION:
402 result = primary_selection_; 402 result = primary_selection_;
403 break; 403 break;
404 default: 404 default:
405 NOTREACHED(); 405 NOTREACHED();
406 result = NULL; 406 result = NULL;
407 break; 407 break;
408 } 408 }
409 return result; 409 return result;
410 } 410 }
OLDNEW
« no previous file with comments | « app/clipboard/clipboard.cc ('k') | app/clipboard/clipboard_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698