| OLD | NEW |
| 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/strings/string_util.h" | 6 #include "base/strings/string_util.h" |
| 8 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/chrome_notification_types.h" | 9 #include "chrome/browser/chrome_notification_types.h" |
| 11 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 12 #include "chrome/browser/ui/login/login_prompt.h" | 11 #include "chrome/browser/ui/login/login_prompt.h" |
| 13 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 12 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 14 #include "chrome/common/chrome_paths.h" | 13 #include "chrome/common/chrome_paths.h" |
| 15 #include "chrome/common/chrome_switches.h" | 14 #include "chrome/common/chrome_switches.h" |
| 16 #include "chrome/test/base/in_process_browser_test.h" | 15 #include "chrome/test/base/in_process_browser_test.h" |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 | 243 |
| 245 private: | 244 private: |
| 246 DISALLOW_COPY_AND_ASSIGN(DataProxyScriptBrowserTest); | 245 DISALLOW_COPY_AND_ASSIGN(DataProxyScriptBrowserTest); |
| 247 }; | 246 }; |
| 248 | 247 |
| 249 IN_PROC_BROWSER_TEST_F(DataProxyScriptBrowserTest, Verify) { | 248 IN_PROC_BROWSER_TEST_F(DataProxyScriptBrowserTest, Verify) { |
| 250 VerifyProxyScript(browser()); | 249 VerifyProxyScript(browser()); |
| 251 } | 250 } |
| 252 | 251 |
| 253 } // namespace | 252 } // namespace |
| OLD | NEW |