Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 286 // Store update URL. | 286 // Store update URL. |
| 287 optional string update_url = 2; | 287 optional string update_url = 2; |
| 288 } | 288 } |
| 289 | 289 |
| 290 // Describes which Android application is to be launched. | 290 // Describes which Android application is to be launched. |
| 291 message AndroidKioskAppInfoProto { | 291 message AndroidKioskAppInfoProto { |
| 292 // Package name (must be present). | 292 // Package name (must be present). |
| 293 // In the event this is the only field that is specified, runtime may use | 293 // In the event this is the only field that is specified, runtime may use |
| 294 // PackageManager.getLaunchIntentForPackage() to start the app. See | 294 // PackageManager.getLaunchIntentForPackage() to start the app. See |
| 295 // https://developer.android.com/reference/android/content/pm/PackageManager.h tml | 295 // https://developer.android.com/reference/android/content/pm/PackageManager.h tml |
| 296 // Example of the package name: "com.android.camera". Do not include "app:" | |
|
peletskyi
2016/10/19 09:29:03
Dennis, what about "app:" prefix? I saw there are
dkalin
2016/10/20 16:20:59
This CL LGTM. App: prefix should not be included.
| |
| 297 // prefix in the package name. | |
| 296 optional string package_name = 1; | 298 optional string package_name = 1; |
| 297 | 299 |
| 298 // Class name (optional). If present, class name is to be combined with | 300 // Class name (optional). If present, class name is to be combined with |
| 299 // package name to form a ComponentName. See | 301 // package name to form a ComponentName. See |
| 300 // https://developer.android.com/reference/android/content/ComponentName.html | 302 // https://developer.android.com/reference/android/content/ComponentName.html |
| 301 optional string class_name = 2; | 303 optional string class_name = 2; |
| 302 | 304 |
| 303 // Action (optional). The third parameter required for creating an Intent. | 305 // Action (optional). The third parameter required for creating an Intent. |
| 304 // If omitted, runtime may choose a reasonable default action | 306 // If omitted, runtime may choose a reasonable default action |
| 305 // (e.g. android.intent.action.MAIN). | 307 // (e.g. android.intent.action.MAIN). |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 793 optional AllowKioskAppControlChromeVersionProto | 795 optional AllowKioskAppControlChromeVersionProto |
| 794 allow_kiosk_app_control_chrome_version = 40; | 796 allow_kiosk_app_control_chrome_version = 40; |
| 795 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 797 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 796 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 798 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 797 optional AllowBluetoothProto allow_bluetooth = 43; | 799 optional AllowBluetoothProto allow_bluetooth = 43; |
| 798 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 800 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 799 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 801 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 800 45; | 802 45; |
| 801 optional LoginAppsProto login_apps = 46; | 803 optional LoginAppsProto login_apps = 46; |
| 802 } | 804 } |
| OLD | NEW |