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

Side by Side Diff: chrome/browser/chromeos/login/oobe_browsertest.cc

Issue 14971002: GTTF: move chrome/browser/google_apis/test_server to net/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased, OWNERS Created 7 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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" 6 #include "base/path_service.h"
7 #include "chrome/browser/chrome_browser_main.h" 7 #include "chrome/browser/chrome_browser_main.h"
8 #include "chrome/browser/chrome_browser_main_extra_parts.h" 8 #include "chrome/browser/chrome_browser_main_extra_parts.h"
9 #include "chrome/browser/chrome_content_browser_client.h" 9 #include "chrome/browser/chrome_content_browser_client.h"
10 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" 10 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h"
11 #include "chrome/browser/chromeos/login/existing_user_controller.h" 11 #include "chrome/browser/chromeos/login/existing_user_controller.h"
12 #include "chrome/browser/chromeos/login/webui_login_display.h" 12 #include "chrome/browser/chromeos/login/webui_login_display.h"
13 #include "chrome/browser/chromeos/login/wizard_controller.h" 13 #include "chrome/browser/chromeos/login/wizard_controller.h"
14 #include "chrome/browser/google_apis/test_server/http_request.h"
15 #include "chrome/browser/google_apis/test_server/http_response.h"
16 #include "chrome/browser/google_apis/test_server/http_server.h"
17 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
18 #include "chrome/common/chrome_notification_types.h" 15 #include "chrome/common/chrome_notification_types.h"
19 #include "chrome/common/chrome_paths.h" 16 #include "chrome/common/chrome_paths.h"
20 #include "chrome/common/chrome_switches.h" 17 #include "chrome/common/chrome_switches.h"
21 #include "chrome/test/base/in_process_browser_test.h" 18 #include "chrome/test/base/in_process_browser_test.h"
22 #include "chrome/test/base/interactive_test_utils.h" 19 #include "chrome/test/base/interactive_test_utils.h"
23 #include "chrome/test/base/ui_test_utils.h" 20 #include "chrome/test/base/ui_test_utils.h"
24 #include "chromeos/chromeos_switches.h" 21 #include "chromeos/chromeos_switches.h"
25 #include "content/public/browser/notification_observer.h" 22 #include "content/public/browser/notification_observer.h"
26 #include "content/public/browser/notification_registrar.h" 23 #include "content/public/browser/notification_registrar.h"
27 #include "content/public/browser/notification_service.h" 24 #include "content/public/browser/notification_service.h"
28 #include "content/public/test/test_utils.h" 25 #include "content/public/test/test_utils.h"
29 #include "google_apis/gaia/gaia_switches.h" 26 #include "google_apis/gaia/gaia_switches.h"
27 #include "net/test/embedded_test_server/http_request.h"
28 #include "net/test/embedded_test_server/http_response.h"
29 #include "net/test/embedded_test_server/http_server.h"
30 #include "testing/gmock/include/gmock/gmock.h" 30 #include "testing/gmock/include/gmock/gmock.h"
31 #include "testing/gtest/include/gtest/gtest.h" 31 #include "testing/gtest/include/gtest/gtest.h"
32 32
33 using namespace google_apis; 33 using namespace google_apis;
34 using namespace google_apis::test_server; 34 using namespace google_apis::test_server;
35 35
36 namespace { 36 namespace {
37 37
38 // Used to add an observer to NotificationService after it's created. 38 // Used to add an observer to NotificationService after it's created.
39 class TestBrowserMainExtraParts 39 class TestBrowserMainExtraParts
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 wizard_controller->SkipToLoginForTesting(); 218 wizard_controller->SkipToLoginForTesting();
219 219
220 scoped_refptr<content::MessageLoopRunner> runner = 220 scoped_refptr<content::MessageLoopRunner> runner =
221 new content::MessageLoopRunner; 221 new content::MessageLoopRunner;
222 content_browser_client_->browser_main_extra_parts_->set_quit_task( 222 content_browser_client_->browser_main_extra_parts_->set_quit_task(
223 runner->QuitClosure()); 223 runner->QuitClosure());
224 runner->Run(); 224 runner->Run();
225 } 225 }
226 226
227 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698