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

Side by Side Diff: chrome/browser/policy/device_policy_cache.cc

Issue 8585025: chromeos: Change all clients of UpdateLibrary to use UpdateEngineClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor fixes Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/policy/device_policy_cache.h" 5 #include "chrome/browser/policy/device_policy_cache.h"
6 6
7 #include <limits> 7 #include <limits>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/metrics/histogram.h" 16 #include "base/metrics/histogram.h"
17 #include "base/values.h" 17 #include "base/values.h"
18 #include "chrome/browser/chromeos/cros/cros_library.h" 18 #include "chrome/browser/chromeos/dbus/dbus_thread_manager.h"
19 #include "chrome/browser/chromeos/cros/update_library.h" 19 #include "chrome/browser/chromeos/dbus/update_engine_client.h"
20 #include "chrome/browser/chromeos/login/ownership_service.h" 20 #include "chrome/browser/chromeos/login/ownership_service.h"
21 #include "chrome/browser/chromeos/user_cros_settings_provider.h" 21 #include "chrome/browser/chromeos/user_cros_settings_provider.h"
22 #include "chrome/browser/policy/cloud_policy_data_store.h" 22 #include "chrome/browser/policy/cloud_policy_data_store.h"
23 #include "chrome/browser/policy/enterprise_install_attributes.h" 23 #include "chrome/browser/policy/enterprise_install_attributes.h"
24 #include "chrome/browser/policy/enterprise_metrics.h" 24 #include "chrome/browser/policy/enterprise_metrics.h"
25 #include "chrome/browser/policy/policy_map.h" 25 #include "chrome/browser/policy/policy_map.h"
26 #include "chrome/browser/policy/proto/device_management_backend.pb.h" 26 #include "chrome/browser/policy/proto/device_management_backend.pb.h"
27 #include "chrome/browser/policy/proto/device_management_constants.h" 27 #include "chrome/browser/policy/proto/device_management_constants.h"
28 #include "chrome/browser/policy/proto/device_management_local.pb.h" 28 #include "chrome/browser/policy/proto/device_management_local.pb.h"
29 #include "policy/configuration_policy_type.h" 29 #include "policy/configuration_policy_type.h"
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 } 347 }
348 348
349 if (policy.has_release_channel() && 349 if (policy.has_release_channel() &&
350 policy.release_channel().has_release_channel()) { 350 policy.release_channel().has_release_channel()) {
351 std::string channel(policy.release_channel().release_channel()); 351 std::string channel(policy.release_channel().release_channel());
352 mandatory->Set(kPolicyChromeOsReleaseChannel, 352 mandatory->Set(kPolicyChromeOsReleaseChannel,
353 Value::CreateStringValue(channel)); 353 Value::CreateStringValue(channel));
354 // TODO(dubroy): Once http://crosbug.com/17015 is implemented, we won't 354 // TODO(dubroy): Once http://crosbug.com/17015 is implemented, we won't
355 // have to pass the channel in here, only ping the update engine to tell 355 // have to pass the channel in here, only ping the update engine to tell
356 // it to fetch the channel from the policy. 356 // it to fetch the channel from the policy.
357 chromeos::CrosLibrary::Get()->GetUpdateLibrary()->SetReleaseTrack(channel); 357 chromeos::DBusThreadManager::Get()->GetUpdateEngineClient()
358 ->SetReleaseTrack(channel);
358 } 359 }
359 360
360 if (policy.has_open_network_configuration() && 361 if (policy.has_open_network_configuration() &&
361 policy.open_network_configuration().has_open_network_configuration()) { 362 policy.open_network_configuration().has_open_network_configuration()) {
362 std::string config( 363 std::string config(
363 policy.open_network_configuration().open_network_configuration()); 364 policy.open_network_configuration().open_network_configuration());
364 mandatory->Set(kPolicyDeviceOpenNetworkConfiguration, 365 mandatory->Set(kPolicyDeviceOpenNetworkConfiguration,
365 Value::CreateStringValue(config)); 366 Value::CreateStringValue(config));
366 } 367 }
367 } 368 }
368 369
369 } // namespace policy 370 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698