| OLD | NEW |
| 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/login/version_info_updater.h" | 5 #include "chrome/browser/chromeos/login/version_info_updater.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
| 12 #include "base/chromeos/chromeos_version.h" | 12 #include "base/chromeos/chromeos_version.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
| 15 #include "base/stringprintf.h" | 15 #include "base/stringprintf.h" |
| 16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
| 17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/chromeos/cros/cros_library.h" | 18 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 19 #include "chrome/browser/policy/browser_policy_connector.h" | 19 #include "chrome/browser/policy/browser_policy_connector.h" |
| 20 #include "chrome/browser/profiles/profile_manager.h" | 20 #include "chrome/browser/profiles/profile_manager.h" |
| 21 #include "chrome/common/chrome_version_info.h" | 21 #include "chrome/common/chrome_version_info.h" |
| 22 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
| 23 #include "grit/chromium_strings.h" | 23 #include "grit/chromium_strings.h" |
| 24 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
| 25 #include "grit/theme_resources.h" | 25 #include "grit/theme_resources.h" |
| 26 #include "third_party/cros_system_api/window_manager/chromeos_wm_ipc_enums.h" | 26 #include "third_party/cros_system_api/window_manager/chromeos_wm_ipc_enums.h" |
| 27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
| 28 #include "ui/base/resource/resource_bundle.h" | 28 #include "ui/base/resource/resource_bundle.h" |
| 29 | 29 |
| 30 #if defined(TOOLKIT_USES_GTK) | |
| 31 #include "chrome/browser/chromeos/legacy_window_manager/wm_ipc.h" | |
| 32 #endif | |
| 33 | |
| 34 namespace chromeos { | 30 namespace chromeos { |
| 35 | 31 |
| 36 /////////////////////////////////////////////////////////////////////////////// | 32 /////////////////////////////////////////////////////////////////////////////// |
| 37 // VersionInfoUpdater public: | 33 // VersionInfoUpdater public: |
| 38 | 34 |
| 39 VersionInfoUpdater::VersionInfoUpdater(Delegate* delegate) | 35 VersionInfoUpdater::VersionInfoUpdater(Delegate* delegate) |
| 40 : delegate_(delegate) { | 36 : delegate_(delegate) { |
| 41 } | 37 } |
| 42 | 38 |
| 43 VersionInfoUpdater::~VersionInfoUpdater() { | 39 VersionInfoUpdater::~VersionInfoUpdater() { |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 delegate_->OnBootTimesLabelTextUpdated(boot_times_text); | 217 delegate_->OnBootTimesLabelTextUpdated(boot_times_text); |
| 222 } | 218 } |
| 223 | 219 |
| 224 void VersionInfoUpdater::OnPolicyStateChanged( | 220 void VersionInfoUpdater::OnPolicyStateChanged( |
| 225 policy::CloudPolicySubsystem::PolicySubsystemState state, | 221 policy::CloudPolicySubsystem::PolicySubsystemState state, |
| 226 policy::CloudPolicySubsystem::ErrorDetails error_details) { | 222 policy::CloudPolicySubsystem::ErrorDetails error_details) { |
| 227 UpdateEnterpriseInfo(); | 223 UpdateEnterpriseInfo(); |
| 228 } | 224 } |
| 229 | 225 |
| 230 } // namespace chromeos | 226 } // namespace chromeos |
| OLD | NEW |