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

Side by Side Diff: chrome/browser/chromeos/policy/enrollment_handler_chromeos.cc

Issue 14008005: Move proto files back into chrome/browser/policy/proto (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
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/policy/enrollment_handler_chromeos.h" 5 #include "chrome/browser/chromeos/policy/enrollment_handler_chromeos.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h" 10 #include "chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h"
11 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
12 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" 11 #include "chrome/browser/policy/cloud/cloud_policy_constants.h"
13 #include "chrome/browser/policy/cloud/proto/device_management_backend.pb.h" 12 #include "chrome/browser/policy/proto/chromeos/chrome_device_policy.pb.h"
13 #include "chrome/browser/policy/proto/cloud/device_management_backend.pb.h"
14 14
15 namespace em = enterprise_management; 15 namespace em = enterprise_management;
16 16
17 namespace policy { 17 namespace policy {
18 18
19 namespace { 19 namespace {
20 20
21 // Retry for InstallAttrs initialization every 500ms. 21 // Retry for InstallAttrs initialization every 500ms.
22 const int kLockRetryIntervalMs = 500; 22 const int kLockRetryIntervalMs = 500;
23 // Maximum time to retry InstallAttrs initialization before we give up. 23 // Maximum time to retry InstallAttrs initialization before we give up.
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 << " " << status.client_status() 253 << " " << status.client_status()
254 << " " << status.validation_status() 254 << " " << status.validation_status()
255 << " " << status.store_status(); 255 << " " << status.store_status();
256 } 256 }
257 257
258 if (!callback.is_null()) 258 if (!callback.is_null())
259 callback.Run(status); 259 callback.Run(status);
260 } 260 }
261 261
262 } // namespace policy 262 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698