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 "chrome/browser/extensions/extension_browsertest.h" | 5 #include "chrome/browser/extensions/extension_browsertest.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 using extensions::Manifest; | 62 using extensions::Manifest; |
63 | 63 |
64 ExtensionBrowserTest::ExtensionBrowserTest() | 64 ExtensionBrowserTest::ExtensionBrowserTest() |
65 : loaded_(false), | 65 : loaded_(false), |
66 installed_(false), | 66 installed_(false), |
67 #if defined(OS_CHROMEOS) | 67 #if defined(OS_CHROMEOS) |
68 set_chromeos_user_(true), | 68 set_chromeos_user_(true), |
69 #endif | 69 #endif |
70 // Default channel is STABLE but override with UNKNOWN so that unlaunched | 70 // Default channel is STABLE but override with UNKNOWN so that unlaunched |
71 // or incomplete APIs can write tests. | 71 // or incomplete APIs can write tests. |
72 current_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN), | 72 current_channel_(version_info::Channel::UNKNOWN), |
73 override_prompt_for_external_extensions_( | 73 override_prompt_for_external_extensions_( |
74 FeatureSwitch::prompt_for_external_extensions(), | 74 FeatureSwitch::prompt_for_external_extensions(), |
75 false), | 75 false), |
76 #if defined(OS_WIN) | 76 #if defined(OS_WIN) |
77 user_desktop_override_(base::DIR_USER_DESKTOP), | 77 user_desktop_override_(base::DIR_USER_DESKTOP), |
78 common_desktop_override_(base::DIR_COMMON_DESKTOP), | 78 common_desktop_override_(base::DIR_COMMON_DESKTOP), |
79 user_quick_launch_override_(base::DIR_USER_QUICK_LAUNCH), | 79 user_quick_launch_override_(base::DIR_USER_QUICK_LAUNCH), |
80 start_menu_override_(base::DIR_START_MENU), | 80 start_menu_override_(base::DIR_START_MENU), |
81 common_start_menu_override_(base::DIR_COMMON_START_MENU), | 81 common_start_menu_override_(base::DIR_COMMON_START_MENU), |
82 #endif | 82 #endif |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 return extensions::browsertest_util::ExecuteScriptInBackgroundPage( | 660 return extensions::browsertest_util::ExecuteScriptInBackgroundPage( |
661 profile(), extension_id, script); | 661 profile(), extension_id, script); |
662 } | 662 } |
663 | 663 |
664 bool ExtensionBrowserTest::ExecuteScriptInBackgroundPageNoWait( | 664 bool ExtensionBrowserTest::ExecuteScriptInBackgroundPageNoWait( |
665 const std::string& extension_id, | 665 const std::string& extension_id, |
666 const std::string& script) { | 666 const std::string& script) { |
667 return extensions::browsertest_util::ExecuteScriptInBackgroundPageNoWait( | 667 return extensions::browsertest_util::ExecuteScriptInBackgroundPageNoWait( |
668 profile(), extension_id, script); | 668 profile(), extension_id, script); |
669 } | 669 } |
OLD | NEW |