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

Unified Diff: chrome/browser/policy/cloud/proto/device_management_local.proto

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/cloud/proto/device_management_local.proto
diff --git a/chrome/browser/policy/cloud/proto/device_management_local.proto b/chrome/browser/policy/cloud/proto/device_management_local.proto
deleted file mode 100644
index 122e86360c8683986a6c3dded8690c7f764508e6..0000000000000000000000000000000000000000
--- a/chrome/browser/policy/cloud/proto/device_management_local.proto
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2011 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.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package enterprise_management;
-
-import "device_management_backend.proto";
-
-// Wrapper around CloudPolicyResponse/DevicePolicyResponse for caching on disk.
-message CachedCloudPolicyResponse {
- // The DevicePolicyResponse wrapped by this message.
- optional DevicePolicyResponse device_policy = 1;
- // Timestamp noting when the |unmanaged| flag was set. The meaning is
- // milliseconds since 1970. When caching (deprecated) DevicePolicyResponses,
- // this timestamp also notes when the response was cached.
- optional uint64 timestamp = 2;
- // Flag that is set to true if this device is not managed.
- optional bool unmanaged = 3;
- // The PolicyFetchResponse wrapped by this message.
- optional PolicyFetchResponse cloud_policy = 4;
-}
-
-// Encapsulates a device ID and the associated device token.
-message DeviceCredentials {
- optional string device_id = 1;
- optional string device_token = 2;
-}

Powered by Google App Engine
This is Rietveld 408576698