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

Side by Side Diff: chrome/browser/managed_mode/managed_user_shared_settings_update.cc

Issue 335833003: Rename "managed (mode|user)" to "supervised user" (part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments (+ a few other cleanups) Created 6 years, 6 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/managed_mode/managed_user_shared_settings_update.h"
6
7 #include "base/bind.h"
8 #include "base/values.h"
9 #include "chrome/browser/managed_mode/managed_user_shared_settings_service.h"
10
11 ManagedUserSharedSettingsUpdate::ManagedUserSharedSettingsUpdate(
12 ManagedUserSharedSettingsService* service,
13 const std::string& mu_id,
14 const std::string& key,
15 scoped_ptr<base::Value> value,
16 const base::Callback<void(bool)>& success_callback)
17 : service_(service),
18 mu_id_(mu_id),
19 key_(key),
20 value_(value.Pass()),
21 callback_(success_callback) {
22 service->SetValueInternal(mu_id, key, *value_, false);
23 subscription_ = service->Subscribe(
24 base::Bind(&ManagedUserSharedSettingsUpdate::OnSettingChanged,
25 base::Unretained(this)));
26 }
27
28 ManagedUserSharedSettingsUpdate::~ManagedUserSharedSettingsUpdate() {}
29
30 void ManagedUserSharedSettingsUpdate::OnSettingChanged(const std::string& mu_id,
31 const std::string& key) {
32 if (mu_id != mu_id_)
33 return;
34
35 if (key != key_)
36 return;
37
38 const base::Value* value = service_->GetValue(mu_id, key);
39 callback_.Run(value->Equals(value_.get()));
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698