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

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

Issue 10392068: ui: Move gl/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac_rel Created 8 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/webkit_support.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.cc » ('j') | 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/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
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
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 }
OLDNEW
« no previous file with comments | « webkit/support/webkit_support.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698