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

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

Issue 14691006: Move SpawnedTestServer to its own subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort gyp Created 7 years, 7 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') | no next file » | 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 "base/at_exit.h" 5 #include "base/at_exit.h"
6 #include "base/basictypes.h" 6 #include "base/basictypes.h"
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/debug/stack_trace.h" 8 #include "base/debug/stack_trace.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/environment.h" 10 #include "base/environment.h"
11 #include "base/event_recorder.h" 11 #include "base/event_recorder.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
14 #include "base/i18n/icu_util.h" 14 #include "base/i18n/icu_util.h"
15 #include "base/message_loop.h" 15 #include "base/message_loop.h"
16 #include "base/metrics/stats_table.h" 16 #include "base/metrics/stats_table.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/process_util.h" 18 #include "base/process_util.h"
19 #include "base/rand_util.h" 19 #include "base/rand_util.h"
20 #include "base/strings/string_number_conversions.h" 20 #include "base/strings/string_number_conversions.h"
21 #include "base/sys_info.h" 21 #include "base/sys_info.h"
22 #include "base/utf_string_conversions.h" 22 #include "base/utf_string_conversions.h"
23 #include "net/base/net_module.h" 23 #include "net/base/net_module.h"
24 #include "net/base/net_util.h" 24 #include "net/base/net_util.h"
25 #include "net/cookies/cookie_monster.h" 25 #include "net/cookies/cookie_monster.h"
26 #include "net/http/http_cache.h" 26 #include "net/http/http_cache.h"
27 #include "net/http/http_util.h" 27 #include "net/http/http_util.h"
28 #include "net/test/spawned_test_server.h" 28 #include "net/test/spawned_test_server/spawned_test_server.h"
29 #include "net/url_request/url_request_context.h" 29 #include "net/url_request/url_request_context.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h " 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h "
32 #include "ui/base/window_open_disposition.h" 32 #include "ui/base/window_open_disposition.h"
33 #include "ui/gl/gl_implementation.h" 33 #include "ui/gl/gl_implementation.h"
34 #include "ui/gl/gl_switches.h" 34 #include "ui/gl/gl_switches.h"
35 #include "webkit/glue/webkit_glue.h" 35 #include "webkit/glue/webkit_glue.h"
36 #include "webkit/glue/webpreferences.h" 36 #include "webkit/glue/webpreferences.h"
37 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" 37 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h"
38 #include "webkit/tools/test_shell/test_shell.h" 38 #include "webkit/tools/test_shell/test_shell.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 TestShell::ShutdownTestShell(); 261 TestShell::ShutdownTestShell();
262 TestShell::CleanupLogging(); 262 TestShell::CleanupLogging();
263 263
264 // Tear down shared StatsTable; prevents unit_tests from leaking it. 264 // Tear down shared StatsTable; prevents unit_tests from leaking it.
265 base::StatsTable::set_current(NULL); 265 base::StatsTable::set_current(NULL);
266 delete table; 266 delete table;
267 RemoveSharedMemoryFile(stats_filename); 267 RemoveSharedMemoryFile(stats_filename);
268 268
269 return 0; 269 return 0;
270 } 270 }
OLDNEW
« no previous file with comments | « webkit/support/test_webkit_platform_support.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698