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

Side by Side Diff: webkit/tools/test_shell/simple_clipboard_impl.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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
OLDNEW
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 #include "webkit/glue/webkit_glue.h" 5 #include "webkit/glue/webkit_glue.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/stl_util-inl.h" 10 #include "base/stl_util.h"
11 #include "base/string16.h" 11 #include "base/string16.h"
12 #include "googleurl/src/gurl.h" 12 #include "googleurl/src/gurl.h"
13 #include "third_party/skia/include/core/SkBitmap.h" 13 #include "third_party/skia/include/core/SkBitmap.h"
14 #include "third_party/zlib/zlib.h" 14 #include "third_party/zlib/zlib.h"
15 #include "ui/base/clipboard/clipboard.h" 15 #include "ui/base/clipboard/clipboard.h"
16 #include "ui/gfx/codec/png_codec.h" 16 #include "ui/gfx/codec/png_codec.h"
17 #include "ui/gfx/size.h" 17 #include "ui/gfx/size.h"
18 #include "webkit/glue/scoped_clipboard_writer_glue.h" 18 #include "webkit/glue/scoped_clipboard_writer_glue.h"
19 19
20 // Clipboard glue 20 // Clipboard glue
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 bool ClipboardReadFilenames(ui::Clipboard::Buffer buffer, 92 bool ClipboardReadFilenames(ui::Clipboard::Buffer buffer,
93 std::vector<string16>* filenames) { 93 std::vector<string16>* filenames) {
94 return false; 94 return false;
95 } 95 }
96 96
97 uint64 ClipboardGetSequenceNumber() { 97 uint64 ClipboardGetSequenceNumber() {
98 return 0; 98 return 0;
99 } 99 }
100 100
101 } // namespace webkit_glue 101 } // namespace webkit_glue
OLDNEW
« base/stl_util.h ('K') | « webkit/tools/test_shell/mock_webclipboard_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698