| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
| 7 #include "chrome/browser/supervised_user/supervised_user_shared_settings_service
.h" | 7 #include "chrome/browser/supervised_user/supervised_user_shared_settings_service
.h" |
| 8 #include "chrome/browser/supervised_user/supervised_user_shared_settings_update.
h" | 8 #include "chrome/browser/supervised_user/supervised_user_shared_settings_update.
h" |
| 9 #include "chrome/test/base/testing_profile.h" | 9 #include "chrome/test/base/testing_profile.h" |
| 10 #include "sync/api/sync_change.h" | 10 #include "sync/api/sync_change.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 class SupervisedUserSharedSettingsUpdateTest : public testing::Test { | 13 class SupervisedUserSharedSettingsUpdateTest : public testing::Test { |
| 14 public: | 14 public: |
| 15 SupervisedUserSharedSettingsUpdateTest() : service_(profile_.GetPrefs()) {} | 15 SupervisedUserSharedSettingsUpdateTest() : service_(profile_.GetPrefs()) {} |
| 16 virtual ~SupervisedUserSharedSettingsUpdateTest() {} | 16 ~SupervisedUserSharedSettingsUpdateTest() override {} |
| 17 | 17 |
| 18 void OnSettingUpdated(bool success) { | 18 void OnSettingUpdated(bool success) { |
| 19 result_.reset(new bool(success)); | 19 result_.reset(new bool(success)); |
| 20 } | 20 } |
| 21 | 21 |
| 22 protected: | 22 protected: |
| 23 TestingProfile profile_; | 23 TestingProfile profile_; |
| 24 SupervisedUserSharedSettingsService service_; | 24 SupervisedUserSharedSettingsService service_; |
| 25 scoped_ptr<bool> result_; | 25 scoped_ptr<bool> result_; |
| 26 }; | 26 }; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 &service_, | 76 &service_, |
| 77 "abcdef", | 77 "abcdef", |
| 78 "name", | 78 "name", |
| 79 scoped_ptr<base::Value>(new base::StringValue("Hans Moleman")), | 79 scoped_ptr<base::Value>(new base::StringValue("Hans Moleman")), |
| 80 base::Bind(&SupervisedUserSharedSettingsUpdateTest::OnSettingUpdated, | 80 base::Bind(&SupervisedUserSharedSettingsUpdateTest::OnSettingUpdated, |
| 81 base::Unretained(this))); | 81 base::Unretained(this))); |
| 82 ASSERT_FALSE(result_); | 82 ASSERT_FALSE(result_); |
| 83 } | 83 } |
| 84 ASSERT_FALSE(result_); | 84 ASSERT_FALSE(result_); |
| 85 } | 85 } |
| OLD | NEW |