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

Side by Side Diff: chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc

Issue 689553002: Cleanup: Remove unneeded path_service.h includes in base and chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win Created 6 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) 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/command_line.h" 5 #include "base/command_line.h"
6 #include "base/path_service.h"
7 #include "base/process/kill.h" 6 #include "base/process/kill.h"
8 #include "base/process/launch.h" 7 #include "base/process/launch.h"
9 #include "base/test/test_timeouts.h" 8 #include "base/test/test_timeouts.h"
10 #include "chrome/browser/chrome_notification_types.h" 9 #include "chrome/browser/chrome_notification_types.h"
11 #include "chrome/common/chrome_result_codes.h" 10 #include "chrome/common/chrome_result_codes.h"
12 #include "chrome/common/chrome_switches.h" 11 #include "chrome/common/chrome_switches.h"
13 #include "chrome/test/base/in_process_browser_test.h" 12 #include "chrome/test/base/in_process_browser_test.h"
14 #include "chrome/test/base/test_switches.h" 13 #include "chrome/test/base/test_switches.h"
15 #include "chrome/test/base/ui_test_utils.h" 14 #include "chrome/test/base/ui_test_utils.h"
16 #include "content/public/browser/notification_service.h" 15 #include "content/public/browser/notification_service.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 bool exited = 84 bool exited =
86 base::WaitForExitCodeWithTimeout(handle, &exit_code, 85 base::WaitForExitCodeWithTimeout(handle, &exit_code,
87 TestTimeouts::action_timeout()); 86 TestTimeouts::action_timeout());
88 87
89 EXPECT_TRUE(exited); 88 EXPECT_TRUE(exited);
90 EXPECT_EQ(content::RESULT_CODE_NORMAL_EXIT, exit_code); 89 EXPECT_EQ(content::RESULT_CODE_NORMAL_EXIT, exit_code);
91 base::CloseProcessHandle(handle); 90 base::CloseProcessHandle(handle);
92 } 91 }
93 92
94 } // namespace 93 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/prefs/pref_functional_browsertest.cc ('k') | chrome/browser/process_singleton_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698