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

Side by Side Diff: chrome/browser/chromeos/settings/device_settings_cache_unittest.cc

Issue 12253004: Moving last generic Prefs implementation files to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge LKGR Created 7 years, 10 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) 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/chromeos/settings/device_settings_cache.h" 5 #include "chrome/browser/chromeos/settings/device_settings_cache.h"
6 6
7 #include "base/prefs/testing_pref_service.h"
7 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h" 8 #include "chrome/browser/policy/proto/chrome_device_policy.pb.h"
8 #include "chrome/browser/policy/proto/device_management_backend.pb.h" 9 #include "chrome/browser/policy/proto/device_management_backend.pb.h"
9 #include "chrome/common/pref_names.h" 10 #include "chrome/common/pref_names.h"
10 #include "chrome/test/base/testing_pref_service.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 12
13 namespace em = enterprise_management; 13 namespace em = enterprise_management;
14 14
15 namespace chromeos { 15 namespace chromeos {
16 16
17 class DeviceSettingsCacheTest : public testing::Test { 17 class DeviceSettingsCacheTest : public testing::Test {
18 protected: 18 protected:
19 virtual void SetUp() { 19 virtual void SetUp() {
20 // prepare some data. 20 // prepare some data.
(...skipping 27 matching lines...) Expand all
48 TEST_F(DeviceSettingsCacheTest, CorruptData) { 48 TEST_F(DeviceSettingsCacheTest, CorruptData) {
49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_)); 49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_));
50 50
51 local_state_.SetString(prefs::kDeviceSettingsCache, "blaaa"); 51 local_state_.SetString(prefs::kDeviceSettingsCache, "blaaa");
52 52
53 em::PolicyData policy_out; 53 em::PolicyData policy_out;
54 EXPECT_FALSE(device_settings_cache::Retrieve(&policy_out, &local_state_)); 54 EXPECT_FALSE(device_settings_cache::Retrieve(&policy_out, &local_state_));
55 } 55 }
56 56
57 } // namespace chromeos 57 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698