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

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

Issue 144009: Move socket related files from net/base to net/socket. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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/DEPS ('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) 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 <iostream> 5 #include <iostream>
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/event_recorder.h" 10 #include "base/event_recorder.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/icu_util.h" 13 #include "base/icu_util.h"
14 #include "base/memory_debug.h" 14 #include "base/memory_debug.h"
15 #include "base/message_loop.h" 15 #include "base/message_loop.h"
16 #include "base/path_service.h" 16 #include "base/path_service.h"
17 #include "base/process_util.h" 17 #include "base/process_util.h"
18 #include "base/rand_util.h" 18 #include "base/rand_util.h"
19 #include "base/stats_table.h" 19 #include "base/stats_table.h"
20 #include "base/string_util.h" 20 #include "base/string_util.h"
21 #include "base/sys_info.h" 21 #include "base/sys_info.h"
22 #include "base/trace_event.h" 22 #include "base/trace_event.h"
23 #include "net/base/cookie_monster.h" 23 #include "net/base/cookie_monster.h"
24 #include "net/base/net_module.h" 24 #include "net/base/net_module.h"
25 #include "net/http/http_cache.h" 25 #include "net/http/http_cache.h"
26 #include "net/base/ssl_test_util.h" 26 #include "net/socket/ssl_test_util.h"
27 #include "net/url_request/url_request_context.h" 27 #include "net/url_request/url_request_context.h"
28 #include "webkit/api/public/WebKit.h" 28 #include "webkit/api/public/WebKit.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"
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 324
325 TestShell::ShutdownTestShell(); 325 TestShell::ShutdownTestShell();
326 TestShell::CleanupLogging(); 326 TestShell::CleanupLogging();
327 327
328 // Tear down shared StatsTable; prevents unit_tests from leaking it. 328 // Tear down shared StatsTable; prevents unit_tests from leaking it.
329 StatsTable::set_current(NULL); 329 StatsTable::set_current(NULL);
330 delete table; 330 delete table;
331 331
332 return 0; 332 return 0;
333 } 333 }
OLDNEW
« no previous file with comments | « webkit/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698