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

Side by Side Diff: content/renderer/renderer_main_platform_delegate_win.cc

Issue 16756003: Use a direct include of strings headers in content/renderer and content/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 "content/renderer/renderer_main_platform_delegate.h" 5 #include "content/renderer/renderer_main_platform_delegate.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/win/win_util.h" 11 #include "base/win/win_util.h"
12 #include "content/public/common/content_switches.h" 12 #include "content/public/common/content_switches.h"
13 #include "content/public/common/injection_test_win.h" 13 #include "content/public/common/injection_test_win.h"
14 #include "content/public/renderer/render_thread.h" 14 #include "content/public/renderer/render_thread.h"
15 #include "content/renderer/render_thread_impl.h" 15 #include "content/renderer/render_thread_impl.h"
16 #include "sandbox/win/src/sandbox.h" 16 #include "sandbox/win/src/sandbox.h"
17 #include "skia/ext/vector_platform_device_emf_win.h" 17 #include "skia/ext/vector_platform_device_emf_win.h"
18 #include "third_party/icu/public/i18n/unicode/timezone.h" 18 #include "third_party/icu/public/i18n/unicode/timezone.h"
19 #include "third_party/skia/include/ports/SkTypeface_win.h" 19 #include "third_party/skia/include/ports/SkTypeface_win.h"
20 20
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 if (run_security_tests) { 163 if (run_security_tests) {
164 int test_count = 0; 164 int test_count = 0;
165 DVLOG(1) << "Running renderer security tests"; 165 DVLOG(1) << "Running renderer security tests";
166 BOOL result = run_security_tests(&test_count); 166 BOOL result = run_security_tests(&test_count);
167 CHECK(result) << "Test number " << test_count << " has failed."; 167 CHECK(result) << "Test number " << test_count << " has failed.";
168 } 168 }
169 } 169 }
170 } 170 }
171 171
172 } // namespace content 172 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/renderer_main.cc ('k') | content/renderer/renderer_webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698