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

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

Issue 387020: Upstreaming WebKit.gyp (Closed)
Patch Set: Created 11 years, 1 month 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/event_recorder.h" 8 #include "base/event_recorder.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/i18n/icu_util.h" 11 #include "base/i18n/icu_util.h"
12 #include "base/memory_debug.h" 12 #include "base/memory_debug.h"
13 #include "base/message_loop.h" 13 #include "base/message_loop.h"
14 #include "base/path_service.h" 14 #include "base/path_service.h"
15 #include "base/process_util.h" 15 #include "base/process_util.h"
16 #include "base/rand_util.h" 16 #include "base/rand_util.h"
17 #include "base/stats_table.h" 17 #include "base/stats_table.h"
18 #include "base/string_util.h" 18 #include "base/string_util.h"
19 #include "base/sys_info.h" 19 #include "base/sys_info.h"
20 #include "base/trace_event.h" 20 #include "base/trace_event.h"
21 #include "net/base/cookie_monster.h" 21 #include "net/base/cookie_monster.h"
22 #include "net/base/net_module.h" 22 #include "net/base/net_module.h"
23 #include "net/base/net_util.h" 23 #include "net/base/net_util.h"
24 #include "net/http/http_cache.h" 24 #include "net/http/http_cache.h"
25 #include "net/socket/ssl_test_util.h" 25 #include "net/socket/ssl_test_util.h"
26 #include "net/url_request/url_request_context.h" 26 #include "net/url_request/url_request_context.h"
27 #include "webkit/api/public/WebKit.h" 27 #include "third_party/WebKit/WebKit/chromium/public/WebKit.h"
28 #include "webkit/api/public/WebScriptController.h" 28 #include "third_party/WebKit/WebKit/chromium/public/WebScriptController.h"
29 #include "webkit/glue/webkit_glue.h" 29 #include "webkit/glue/webkit_glue.h"
30 #include "webkit/glue/window_open_disposition.h" 30 #include "webkit/glue/window_open_disposition.h"
31 #include "webkit/extensions/v8/gc_extension.h" 31 #include "webkit/extensions/v8/gc_extension.h"
32 #include "webkit/extensions/v8/playback_extension.h" 32 #include "webkit/extensions/v8/playback_extension.h"
33 #include "webkit/extensions/v8/profiler_extension.h" 33 #include "webkit/extensions/v8/profiler_extension.h"
34 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" 34 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h"
35 #include "webkit/tools/test_shell/test_shell.h" 35 #include "webkit/tools/test_shell/test_shell.h"
36 #include "webkit/tools/test_shell/test_shell_platform_delegate.h" 36 #include "webkit/tools/test_shell/test_shell_platform_delegate.h"
37 #include "webkit/tools/test_shell/test_shell_request_context.h" 37 #include "webkit/tools/test_shell/test_shell_request_context.h"
38 #include "webkit/tools/test_shell/test_shell_switches.h" 38 #include "webkit/tools/test_shell/test_shell_switches.h"
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 360
361 TestShell::ShutdownTestShell(); 361 TestShell::ShutdownTestShell();
362 TestShell::CleanupLogging(); 362 TestShell::CleanupLogging();
363 363
364 // Tear down shared StatsTable; prevents unit_tests from leaking it. 364 // Tear down shared StatsTable; prevents unit_tests from leaking it.
365 StatsTable::set_current(NULL); 365 StatsTable::set_current(NULL);
366 delete table; 366 delete table;
367 367
368 return 0; 368 return 0;
369 } 369 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_mac.mm ('k') | webkit/tools/test_shell/test_shell_webkit_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698