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

Unified Diff: third_party/WebKit/public/platform/modules/screen_orientation/screen_orientation_lock_types.mojom

Issue 2564653003: [DeviceService] Move screen_orientation.mojom from //content to //device. (Closed)
Patch Set: Address nits from blundell@ Created 4 years 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: third_party/WebKit/public/platform/modules/screen_orientation/screen_orientation_lock_types.mojom
diff --git a/third_party/WebKit/public/platform/modules/screen_orientation/screen_orientation_lock_types.mojom b/third_party/WebKit/public/platform/modules/screen_orientation/screen_orientation_lock_types.mojom
deleted file mode 100644
index e91d0a29138a74daf75322fc33eed6839850c48d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/modules/screen_orientation/screen_orientation_lock_types.mojom
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2016 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.
-
-module blink.mojom;
-
-enum ScreenOrientationLockResult {
- // The lock was successfully applied.
- SCREEN_ORIENTATION_LOCK_RESULT_SUCCESS,
-
- // Failed because locking isn't available on the platform.
- SCREEN_ORIENTATION_LOCK_RESULT_ERROR_NOT_AVAILABLE,
-
- // Failed because fullscreen is required to lock.
- SCREEN_ORIENTATION_LOCK_RESULT_ERROR_FULLSCREEN_REQUIRED,
-
- // Failed because another lock/unlock got called before that one ended.
- SCREEN_ORIENTATION_LOCK_RESULT_ERROR_CANCELED,
-};
-
-enum ScreenOrientationLockType {
- DEFAULT = 0, // Equivalent to unlock.
- PORTRAIT_PRIMARY,
- PORTRAIT_SECONDARY,
- LANDSCAPE_PRIMARY,
- LANDSCAPE_SECONDARY,
- ANY,
- LANDSCAPE,
- PORTRAIT,
- NATURAL,
-};

Powered by Google App Engine
This is Rietveld 408576698