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/json/json_file_value_serializer.h" | 6 #include "base/json/json_file_value_serializer.h" |
7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "chrome/browser/extensions/extension_service.h" | 10 #include "chrome/browser/extensions/extension_service.h" |
11 #include "chrome/browser/extensions/test_extension_system.h" | 11 #include "chrome/browser/extensions/test_extension_system.h" |
12 #include "chrome/browser/ui/webui/extensions/extension_settings_handler.h" | 12 #include "chrome/browser/ui/webui/extensions/extension_settings_handler.h" |
13 #include "chrome/common/chrome_paths.h" | 13 #include "chrome/common/chrome_paths.h" |
14 #include "chrome/test/base/testing_profile.h" | 14 #include "chrome/test/base/testing_profile.h" |
15 #include "content/public/test/test_browser_thread.h" | 15 #include "content/public/test/test_browser_thread.h" |
16 #include "extensions/browser/management_policy.h" | 16 #include "extensions/browser/management_policy.h" |
17 #include "extensions/common/constants.h" | 17 #include "extensions/common/constants.h" |
18 #include "extensions/common/extension.h" | 18 #include "extensions/common/extension.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 #if defined(OS_CHROMEOS) | 21 #if defined(OS_CHROMEOS) |
22 #include "chrome/browser/chromeos/login/users/user_manager.h" | 22 #include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h" |
23 #include "chrome/browser/chromeos/settings/cros_settings.h" | 23 #include "chrome/browser/chromeos/settings/cros_settings.h" |
24 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 24 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
25 #endif | 25 #endif |
26 | 26 |
27 namespace extensions { | 27 namespace extensions { |
28 | 28 |
29 class ExtensionUITest : public testing::Test { | 29 class ExtensionUITest : public testing::Test { |
30 public: | 30 public: |
31 ExtensionUITest() | 31 ExtensionUITest() |
32 : ui_thread_(content::BrowserThread::UI, &message_loop_), | 32 : ui_thread_(content::BrowserThread::UI, &message_loop_), |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 CreateExtensionDetailViewFromPath( | 272 CreateExtensionDetailViewFromPath( |
273 extension_path, pages, Manifest::UNPACKED)); | 273 extension_path, pages, Manifest::UNPACKED)); |
274 | 274 |
275 base::FilePath::StringType ui_path; | 275 base::FilePath::StringType ui_path; |
276 | 276 |
277 EXPECT_TRUE(extension_details->GetString("path", &ui_path)); | 277 EXPECT_TRUE(extension_details->GetString("path", &ui_path)); |
278 EXPECT_EQ(extension_path, base::FilePath(ui_path)); | 278 EXPECT_EQ(extension_path, base::FilePath(ui_path)); |
279 } | 279 } |
280 | 280 |
281 } // namespace extensions | 281 } // namespace extensions |
OLD | NEW |