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

Unified Diff: chrome/browser/chromeos/policy/stub_enterprise_install_attributes.cc

Issue 2382833002: Rename policy::EnterpriseInstallAttributes to chromeos::InstallAttributes. (Closed)
Patch Set: Add missing #includes. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/stub_enterprise_install_attributes.cc
diff --git a/chrome/browser/chromeos/policy/stub_enterprise_install_attributes.cc b/chrome/browser/chromeos/policy/stub_enterprise_install_attributes.cc
deleted file mode 100644
index 7f56557712ab04ee7299cd5379c602303f4050a9..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/policy/stub_enterprise_install_attributes.cc
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/policy/stub_enterprise_install_attributes.h"
-
-#include <string>
-
-#include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
-#include "components/policy/core/common/cloud/cloud_policy_constants.h"
-
-namespace policy {
-
-StubEnterpriseInstallAttributes::StubEnterpriseInstallAttributes()
- : EnterpriseInstallAttributes(NULL) {
- device_locked_ = true;
-}
-
-void StubEnterpriseInstallAttributes::SetDomain(const std::string& domain) {
- registration_domain_ = domain;
-}
-
-void StubEnterpriseInstallAttributes::SetRegistrationUser(
- const std::string& user) {
- registration_user_ = user;
-}
-
-void StubEnterpriseInstallAttributes::SetDeviceId(const std::string& id) {
- registration_device_id_ = id;
-}
-
-void StubEnterpriseInstallAttributes::SetMode(DeviceMode mode) {
- registration_mode_ = mode;
-}
-
-ScopedStubEnterpriseInstallAttributes::ScopedStubEnterpriseInstallAttributes(
- const std::string& domain,
- const std::string& registration_user,
- const std::string& device_id,
- DeviceMode mode) {
- StubEnterpriseInstallAttributes* attributes =
- new StubEnterpriseInstallAttributes();
- attributes->SetDomain(domain);
- attributes->SetRegistrationUser(registration_user);
- attributes->SetDeviceId(device_id);
- attributes->SetMode(mode);
- BrowserPolicyConnectorChromeOS::SetInstallAttributesForTesting(attributes);
-}
-
-ScopedStubEnterpriseInstallAttributes::
-~ScopedStubEnterpriseInstallAttributes() {
- BrowserPolicyConnectorChromeOS::RemoveInstallAttributesForTesting();
-}
-
-} // namespace policy

Powered by Google App Engine
This is Rietveld 408576698