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

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

Issue 15995038: Use a direct include of utf_string_conversions.h in google_apis/, gpu/, ipc/, media/, ppapi/, print… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better Created 7 years, 6 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/test_webkit_platform_support.cc ('k') | win8/delegate_execute/chrome_util.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) 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_util.h" 25 #include "base/string_util.h"
26 #include "base/stringprintf.h" 26 #include "base/stringprintf.h"
27 #include "base/strings/string_piece.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/strings/utf_string_conversions.h"
29 #include "base/time.h" 30 #include "base/time.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"
38 #include "net/base/net_util.h" 38 #include "net/base/net_util.h"
39 #include "testing/gtest/include/gtest/gtest.h" 39 #include "testing/gtest/include/gtest/gtest.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 // Logging 852 // Logging
853 void EnableWebCoreLogChannels(const std::string& channels) { 853 void EnableWebCoreLogChannels(const std::string& channels) {
854 webkit_glue::EnableWebCoreLogChannels(channels); 854 webkit_glue::EnableWebCoreLogChannels(channels);
855 } 855 }
856 856
857 void SetGamepadData(const WebKit::WebGamepads& pads) { 857 void SetGamepadData(const WebKit::WebGamepads& pads) {
858 test_environment->webkit_platform_support()->setGamepadData(pads); 858 test_environment->webkit_platform_support()->setGamepadData(pads);
859 } 859 }
860 860
861 } // namespace webkit_support 861 } // namespace webkit_support
OLDNEW
« no previous file with comments | « webkit/support/test_webkit_platform_support.cc ('k') | win8/delegate_execute/chrome_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698