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

Side by Side Diff: chrome/browser/chromeos/settings/device_settings_test_helper.h

Issue 985093002: Fix up Owner settings on first load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: based off mattias' patch that injects CrosSettings for testing Created 5 years, 9 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
OLDNEW
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 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_
6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_ 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
17 #include "base/strings/string_util.h" 17 #include "base/strings/string_util.h"
18 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" 18 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
19 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" 19 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
20 #include "chrome/browser/chromeos/policy/device_policy_builder.h" 20 #include "chrome/browser/chromeos/policy/device_policy_builder.h"
21 #include "chrome/browser/chromeos/settings/cros_settings.h"
21 #include "chrome/browser/chromeos/settings/device_settings_service.h" 22 #include "chrome/browser/chromeos/settings/device_settings_service.h"
22 #include "chrome/browser/chromeos/settings/device_settings_test_helper.h" 23 #include "chrome/browser/chromeos/settings/device_settings_test_helper.h"
23 #include "chromeos/dbus/session_manager_client.h" 24 #include "chromeos/dbus/session_manager_client.h"
24 #include "components/ownership/mock_owner_key_util.h" 25 #include "components/ownership/mock_owner_key_util.h"
25 #include "content/public/test/test_browser_thread_bundle.h" 26 #include "content/public/test/test_browser_thread_bundle.h"
26 #include "testing/gtest/include/gtest/gtest.h" 27 #include "testing/gtest/include/gtest/gtest.h"
27 28
28 class TestingProfile; 29 class TestingProfile;
29 30
30 namespace chromeos { 31 namespace chromeos {
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 180
180 DeviceSettingsTestHelper device_settings_test_helper_; 181 DeviceSettingsTestHelper device_settings_test_helper_;
181 // Note that FakeUserManager is used by ProfileHelper, which some of the 182 // Note that FakeUserManager is used by ProfileHelper, which some of the
182 // tested classes depend on implicitly. 183 // tested classes depend on implicitly.
183 FakeChromeUserManager* user_manager_; 184 FakeChromeUserManager* user_manager_;
184 ScopedUserManagerEnabler user_manager_enabler_; 185 ScopedUserManagerEnabler user_manager_enabler_;
185 scoped_refptr<ownership::MockOwnerKeyUtil> owner_key_util_; 186 scoped_refptr<ownership::MockOwnerKeyUtil> owner_key_util_;
186 // Local DeviceSettingsService instance for tests. Avoid using in combination 187 // Local DeviceSettingsService instance for tests. Avoid using in combination
187 // with the global instance (DeviceSettingsService::Get()). 188 // with the global instance (DeviceSettingsService::Get()).
188 DeviceSettingsService device_settings_service_; 189 DeviceSettingsService device_settings_service_;
190 // Local CrosSettings instance for tests. Avoid using in combination
191 // with the global instance (CrosSettings::Get()).
192 CrosSettings cros_settings_;
Mattias Nissler (ping if slow) 2015/03/16 08:51:42 Sigh, all this cruft in here :) Not your fault.
189 scoped_ptr<TestingProfile> profile_; 193 scoped_ptr<TestingProfile> profile_;
190 194
191 scoped_ptr<DBusThreadManagerSetter> dbus_setter_; 195 scoped_ptr<DBusThreadManagerSetter> dbus_setter_;
192 196
193 private: 197 private:
194 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsTestBase); 198 DISALLOW_COPY_AND_ASSIGN(DeviceSettingsTestBase);
195 }; 199 };
196 200
197 } // namespace chromeos 201 } // namespace chromeos
198 202
199 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_ 203 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_TEST_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698