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

Side by Side Diff: content/public/test/test_launcher.cc

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix lint errors/warnings Created 5 years, 2 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
« no previous file with comments | « content/public/app/startup_helper_win.h ('k') | content/shell/app/shell_main.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 "content/public/test/test_launcher.h" 5 #include "content/public/test/test_launcher.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set>
8 #include <string> 9 #include <string>
9 #include <vector> 10 #include <vector>
10 11
11 #include "base/command_line.h" 12 #include "base/command_line.h"
12 #include "base/containers/hash_tables.h" 13 #include "base/containers/hash_tables.h"
13 #include "base/environment.h" 14 #include "base/environment.h"
14 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
15 #include "base/files/scoped_temp_dir.h" 16 #include "base/files/scoped_temp_dir.h"
16 #include "base/logging.h" 17 #include "base/logging.h"
17 #include "base/memory/linked_ptr.h" 18 #include "base/memory/linked_ptr.h"
18 #include "base/memory/scoped_ptr.h" 19 #include "base/memory/scoped_ptr.h"
19 #include "base/message_loop/message_loop.h" 20 #include "base/message_loop/message_loop.h"
20 #include "base/stl_util.h" 21 #include "base/stl_util.h"
21 #include "base/strings/string_number_conversions.h" 22 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/string_util.h" 23 #include "base/strings/string_util.h"
23 #include "base/strings/utf_string_conversions.h" 24 #include "base/strings/utf_string_conversions.h"
24 #include "base/test/launcher/test_launcher.h" 25 #include "base/test/launcher/test_launcher.h"
25 #include "base/test/test_suite.h" 26 #include "base/test/test_suite.h"
26 #include "base/test/test_switches.h" 27 #include "base/test/test_switches.h"
27 #include "base/test/test_timeouts.h" 28 #include "base/test/test_timeouts.h"
28 #include "base/time/time.h" 29 #include "base/time/time.h"
29 #include "content/public/app/content_main.h" 30 #include "content/public/app/content_main.h"
30 #include "content/public/app/content_main_delegate.h" 31 #include "content/public/app/content_main_delegate.h"
31 #include "content/public/app/startup_helper_win.h"
32 #include "content/public/common/content_switches.h" 32 #include "content/public/common/content_switches.h"
33 #include "content/public/common/sandbox_init.h" 33 #include "content/public/common/sandbox_init.h"
34 #include "content/public/test/browser_test.h" 34 #include "content/public/test/browser_test.h"
35 #include "net/base/escape.h" 35 #include "net/base/escape.h"
36 #include "testing/gtest/include/gtest/gtest.h" 36 #include "testing/gtest/include/gtest/gtest.h"
37 37
38 #if defined(OS_WIN) 38 #if defined(OS_WIN)
39 #include "base/base_switches.h" 39 #include "base/base_switches.h"
40 #include "content/common/sandbox_win.h" 40 #include "content/common/sandbox_win.h"
41 #include "content/public/app/sandbox_helper_win.h"
41 #include "sandbox/win/src/sandbox_factory.h" 42 #include "sandbox/win/src/sandbox_factory.h"
42 #include "sandbox/win/src/sandbox_types.h" 43 #include "sandbox/win/src/sandbox_types.h"
43 #elif defined(OS_MACOSX) 44 #elif defined(OS_MACOSX)
44 #include "base/mac/scoped_nsautorelease_pool.h" 45 #include "base/mac/scoped_nsautorelease_pool.h"
45 #endif 46 #endif
46 47
47 namespace content { 48 namespace content {
48 49
49 namespace { 50 namespace {
50 51
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 510
510 TestLauncherDelegate* GetCurrentTestLauncherDelegate() { 511 TestLauncherDelegate* GetCurrentTestLauncherDelegate() {
511 return g_launcher_delegate; 512 return g_launcher_delegate;
512 } 513 }
513 514
514 ContentMainParams* GetContentMainParams() { 515 ContentMainParams* GetContentMainParams() {
515 return g_params; 516 return g_params;
516 } 517 }
517 518
518 } // namespace content 519 } // namespace content
OLDNEW
« no previous file with comments | « content/public/app/startup_helper_win.h ('k') | content/shell/app/shell_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698