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

Unified Diff: components/arc/common/app.mojom

Issue 2139893002: Add CURRENT lock orientation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add CURRENT lock orientation. Created 4 years, 5 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
« no previous file with comments | « chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/app.mojom
diff --git a/components/arc/common/app.mojom b/components/arc/common/app.mojom
index d3d3039eb5e19507e578944b7701f1a89b528204..1110e41be5e13f19a61d2622d38834cb6105214f 100644
--- a/components/arc/common/app.mojom
+++ b/components/arc/common/app.mojom
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
-// Next MinVersion: 12
+// Next MinVersion: 13
oshima 2016/07/12 01:41:21 I missed this when I rebased the CL in https://cod
module arc.mojom;
@@ -15,6 +15,7 @@ enum OrientationLock {
NONE = 0,
PORTRAIT = 1,
LANDSCAPE = 2,
+ CURRENT = 3,
};
// Describes ARC app.
@@ -24,7 +25,7 @@ struct AppInfo {
string activity;
[MinVersion=2] bool sticky; // true if the app cannot be uninstalled
[MinVersion=7] bool notifications_enabled;
- [MinVersion=11] OrientationLock orientation_lock;
+ [MinVersion=12] OrientationLock orientation_lock;
};
// Describes ARC package.
@@ -107,7 +108,7 @@ interface AppHost {
[MinVersion=9] OnInstallShortcut@11(ShortcutInfo shortcut);
// Notifies that task requested orientation lock.
- [MinVersion=11] OnTaskOrientationLockRequested@12(int32 task_id,
+ [MinVersion=12] OnTaskOrientationLockRequested@12(int32 task_id,
OrientationLock lock);
};
« no previous file with comments | « chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698