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

Side by Side Diff: ui/base/clipboard/clipboard_unittest.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_mac.mm ('k') | ui/base/clipboard/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) 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 "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "gfx/size.h"
14 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
15 #include "testing/platform_test.h" 14 #include "testing/platform_test.h"
16 #include "ui/base/clipboard/clipboard.h" 15 #include "ui/base/clipboard/clipboard.h"
17 #include "ui/base/clipboard/scoped_clipboard_writer.h" 16 #include "ui/base/clipboard/scoped_clipboard_writer.h"
17 #include "ui/gfx/size.h"
18 18
19 #if defined(OS_WIN) 19 #if defined(OS_WIN)
20 #include "base/message_loop.h" 20 #include "base/message_loop.h"
21 #include "ui/base/clipboard/clipboard_util_win.h" 21 #include "ui/base/clipboard/clipboard_util_win.h"
22 #endif 22 #endif
23 23
24 #if defined(OS_WIN) || (defined(OS_POSIX) && !defined(OS_MACOSX)) 24 #if defined(OS_WIN) || (defined(OS_POSIX) && !defined(OS_MACOSX))
25 #include "base/pickle.h" 25 #include "base/pickle.h"
26 #endif 26 #endif
27 27
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 writer.WriteBookmark(UTF8ToUTF16("foo"), "bar"); 423 writer.WriteBookmark(UTF8ToUTF16("foo"), "bar");
424 writer.WriteHyperlink(ASCIIToUTF16("foo"), "bar"); 424 writer.WriteHyperlink(ASCIIToUTF16("foo"), "bar");
425 writer.WriteWebSmartPaste(); 425 writer.WriteWebSmartPaste();
426 // Left out: WriteFile, WriteFiles, WriteBitmapFromPixels, WritePickledData. 426 // Left out: WriteFile, WriteFiles, WriteBitmapFromPixels, WritePickledData.
427 } 427 }
428 428
429 // Passes if we don't crash. 429 // Passes if we don't crash.
430 } 430 }
431 431
432 } // namespace ui 432 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/clipboard/clipboard_mac.mm ('k') | ui/base/clipboard/clipboard_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698