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

Side by Side Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 1830113002: Remove trailing whitespace in chrome_device_policy.proto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package enterprise_management; 9 package enterprise_management;
10 10
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 } 656 }
657 657
658 // Settings that control the flow of the login authentication to be either via 658 // Settings that control the flow of the login authentication to be either via
659 // GAIA (default), or via an interstitial screen that can redirect to a SAML IdP 659 // GAIA (default), or via an interstitial screen that can redirect to a SAML IdP
660 // endpoint or return back to the default GAIA flow. 660 // endpoint or return back to the default GAIA flow.
661 message LoginAuthenticationBehaviorProto { 661 message LoginAuthenticationBehaviorProto {
662 enum LoginBehavior { 662 enum LoginBehavior {
663 GAIA = 0; 663 GAIA = 0;
664 SAML_INTERSTITIAL = 1; 664 SAML_INTERSTITIAL = 1;
665 }; 665 };
666 666
667 optional LoginBehavior login_authentication_behavior = 1 [default = GAIA]; 667 optional LoginBehavior login_authentication_behavior = 1 [default = GAIA];
668 } 668 }
669 669
670 // Identifiers of a USB device or device family. 670 // Identifiers of a USB device or device family.
671 message UsbDeviceIdProto { 671 message UsbDeviceIdProto {
672 // USB Vendor Identifier (aka idVendor). 672 // USB Vendor Identifier (aka idVendor).
673 optional int32 vendor_id = 1; 673 optional int32 vendor_id = 1;
674 // USB Product Identifier (aka idProduct). 674 // USB Product Identifier (aka idProduct).
675 optional int32 product_id = 2; 675 optional int32 product_id = 2;
676 } 676 }
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 optional LoginScreenDomainAutoCompleteProto 730 optional LoginScreenDomainAutoCompleteProto
731 login_screen_domain_auto_complete = 37; 731 login_screen_domain_auto_complete = 37;
732 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; 732 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38;
733 optional DisplayRotationDefaultProto display_rotation_default = 39; 733 optional DisplayRotationDefaultProto display_rotation_default = 39;
734 optional AllowKioskAppControlChromeVersionProto 734 optional AllowKioskAppControlChromeVersionProto
735 allow_kiosk_app_control_chrome_version = 40; 735 allow_kiosk_app_control_chrome_version = 40;
736 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; 736 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41;
737 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; 737 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
738 optional AllowBluetoothProto allow_bluetooth = 43; 738 optional AllowBluetoothProto allow_bluetooth = 43;
739 } 739 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698