OLD | NEW |
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/trace_event.h" | 8 #include "base/debug/trace_event.h" |
9 #include "base/environment.h" | 9 #include "base/environment.h" |
10 #include "base/event_recorder.h" | 10 #include "base/event_recorder.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/utf_string_conversions.h" | 21 #include "base/utf_string_conversions.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/cookies/cookie_monster.h" | 24 #include "net/cookies/cookie_monster.h" |
25 #include "net/http/http_cache.h" | 25 #include "net/http/http_cache.h" |
26 #include "net/http/http_util.h" | 26 #include "net/http/http_util.h" |
27 #include "net/test/test_server.h" | 27 #include "net/test/test_server.h" |
28 #include "net/url_request/url_request_context.h" | 28 #include "net/url_request/url_request_context.h" |
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" | 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" |
31 #include "ui/gfx/gl/gl_implementation.h" | 31 #include "ui/gl/gl_implementation.h" |
32 #include "ui/gfx/gl/gl_switches.h" | 32 #include "ui/gl/gl_switches.h" |
33 #include "webkit/glue/webkit_glue.h" | 33 #include "webkit/glue/webkit_glue.h" |
34 #include "webkit/glue/webpreferences.h" | 34 #include "webkit/glue/webpreferences.h" |
35 #include "webkit/glue/window_open_disposition.h" | 35 #include "webkit/glue/window_open_disposition.h" |
36 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" | 36 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
37 #include "webkit/tools/test_shell/test_shell.h" | 37 #include "webkit/tools/test_shell/test_shell.h" |
38 #include "webkit/tools/test_shell/test_shell_platform_delegate.h" | 38 #include "webkit/tools/test_shell/test_shell_platform_delegate.h" |
39 #include "webkit/tools/test_shell/test_shell_request_context.h" | 39 #include "webkit/tools/test_shell/test_shell_request_context.h" |
40 #include "webkit/tools/test_shell/test_shell_switches.h" | 40 #include "webkit/tools/test_shell/test_shell_switches.h" |
41 #include "webkit/tools/test_shell/test_shell_webkit_init.h" | 41 #include "webkit/tools/test_shell/test_shell_webkit_init.h" |
42 | 42 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 TestShell::ShutdownTestShell(); | 285 TestShell::ShutdownTestShell(); |
286 TestShell::CleanupLogging(); | 286 TestShell::CleanupLogging(); |
287 | 287 |
288 // Tear down shared StatsTable; prevents unit_tests from leaking it. | 288 // Tear down shared StatsTable; prevents unit_tests from leaking it. |
289 base::StatsTable::set_current(NULL); | 289 base::StatsTable::set_current(NULL); |
290 delete table; | 290 delete table; |
291 RemoveSharedMemoryFile(stats_filename); | 291 RemoveSharedMemoryFile(stats_filename); |
292 | 292 |
293 return 0; | 293 return 0; |
294 } | 294 } |
OLD | NEW |