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

Side by Side Diff: webkit/support/webkit_support.cc

Issue 14272007: Update the remaining include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « webkit/support/platform_support_win.cc ('k') | webkit/tools/test_shell/test_shell.h » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/support/webkit_support.h" 5 #include "webkit/support/webkit_support.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/base64.h" 8 #include "base/base64.h"
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/debug/debugger.h" 12 #include "base/debug/debugger.h"
13 #include "base/debug/stack_trace.h" 13 #include "base/debug/stack_trace.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/files/scoped_temp_dir.h" 16 #include "base/files/scoped_temp_dir.h"
17 #include "base/i18n/icu_util.h" 17 #include "base/i18n/icu_util.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "base/memory/weak_ptr.h" 20 #include "base/memory/weak_ptr.h"
21 #include "base/message_loop.h" 21 #include "base/message_loop.h"
22 #include "base/path_service.h" 22 #include "base/path_service.h"
23 #include "base/process_util.h" 23 #include "base/process_util.h"
24 #include "base/run_loop.h" 24 #include "base/run_loop.h"
25 #include "base/string_piece.h"
26 #include "base/string_util.h" 25 #include "base/string_util.h"
27 #include "base/stringprintf.h" 26 #include "base/stringprintf.h"
27 #include "base/strings/string_piece.h"
28 #include "base/strings/sys_string_conversions.h" 28 #include "base/strings/sys_string_conversions.h"
29 #include "base/time.h" 29 #include "base/time.h"
30 #include "base/utf_string_conversions.h" 30 #include "base/utf_string_conversions.h"
31 #include "cc/base/thread_impl.h" 31 #include "cc/base/thread_impl.h"
32 #include "googleurl/src/url_util.h" 32 #include "googleurl/src/url_util.h"
33 #include "grit/webkit_chromium_resources.h" 33 #include "grit/webkit_chromium_resources.h"
34 #include "media/base/filter_collection.h" 34 #include "media/base/filter_collection.h"
35 #include "media/base/media_log.h" 35 #include "media/base/media_log.h"
36 #include "net/base/escape.h" 36 #include "net/base/escape.h"
37 #include "net/base/net_errors.h" 37 #include "net/base/net_errors.h"
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 // Logging 845 // Logging
846 void EnableWebCoreLogChannels(const std::string& channels) { 846 void EnableWebCoreLogChannels(const std::string& channels) {
847 webkit_glue::EnableWebCoreLogChannels(channels); 847 webkit_glue::EnableWebCoreLogChannels(channels);
848 } 848 }
849 849
850 void SetGamepadData(const WebKit::WebGamepads& pads) { 850 void SetGamepadData(const WebKit::WebGamepads& pads) {
851 test_environment->webkit_platform_support()->setGamepadData(pads); 851 test_environment->webkit_platform_support()->setGamepadData(pads);
852 } 852 }
853 853
854 } // namespace webkit_support 854 } // namespace webkit_support
OLDNEW
« no previous file with comments | « webkit/support/platform_support_win.cc ('k') | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698