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

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

Issue 3402010: Google codestyle prescribes sorting #include filenames within a section.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 3 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <string> 5 #include <string>
6 6
7 #include "chrome/browser/child_process_security_policy.h" 7 #include "chrome/browser/child_process_security_policy.h"
8 #include "chrome/browser/chrome_thread.h"
8 #include "chrome/browser/chromeos/login/account_screen.h" 9 #include "chrome/browser/chromeos/login/account_screen.h"
9 #include "chrome/browser/chromeos/login/wizard_controller.h" 10 #include "chrome/browser/chromeos/login/wizard_controller.h"
10 #include "chrome/browser/chromeos/login/wizard_in_process_browser_test.h" 11 #include "chrome/browser/chromeos/login/wizard_in_process_browser_test.h"
11 #include "chrome/browser/chrome_thread.h"
12 #include "chrome/common/url_constants.h" 12 #include "chrome/common/url_constants.h"
13 #include "chrome/test/in_process_browser_test.h" 13 #include "chrome/test/in_process_browser_test.h"
14 #include "chrome/test/ui_test_utils.h" 14 #include "chrome/test/ui_test_utils.h"
15 #include "net/test/test_server.h"
15 #include "net/url_request/url_request_about_job.h" 16 #include "net/url_request/url_request_about_job.h"
16 #include "net/url_request/url_request_filter.h" 17 #include "net/url_request/url_request_filter.h"
17 #include "net/test/test_server.h"
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "testing/gmock/include/gmock/gmock.h"
19 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
20 20
21 namespace chromeos { 21 namespace chromeos {
22 22
23 class AccountScreenTest : public WizardInProcessBrowserTest { 23 class AccountScreenTest : public WizardInProcessBrowserTest {
24 public: 24 public:
25 AccountScreenTest(): WizardInProcessBrowserTest("account") { 25 AccountScreenTest(): WizardInProcessBrowserTest("account") {
26 } 26 }
27 27
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 chrome::kCrosScheme); 74 chrome::kCrosScheme);
75 URLRequestFilter::GetInstance()->AddHostnameHandler(chrome::kCrosScheme, 75 URLRequestFilter::GetInstance()->AddHostnameHandler(chrome::kCrosScheme,
76 "inspector", 76 "inspector",
77 &InspectorHook); 77 &InspectorHook);
78 EXPECT_FALSE(inspector_called); 78 EXPECT_FALSE(inspector_called);
79 ui_test_utils::RunMessageLoop(); 79 ui_test_utils::RunMessageLoop();
80 EXPECT_TRUE(inspector_called); 80 EXPECT_TRUE(inspector_called);
81 } 81 }
82 82
83 } // namespace chromeos 83 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/input_method/candidate_window.cc ('k') | chrome/browser/chromeos/login/background_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698