Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module content.mojom; | 5 module device.mojom; |
| 6 | 6 |
| 7 import "third_party/WebKit/public/platform/modules/screen_orientation/screen_ori entation_lock_types.mojom"; | 7 import "third_party/WebKit/public/platform/modules/screen_orientation/screen_ori entation_lock_types.mojom"; |
|
leonhsl(Using Gerrit)
2016/12/09 09:19:48
Seems the win_chromium_compile_dbg_ng failure indi
blundell
2016/12/09 15:34:42
Yes, that's correct. It looks like //third_party/W
leonhsl(Using Gerrit)
2016/12/12 09:48:29
Done and Thanks!
| |
| 8 | 8 |
| 9 interface ScreenOrientation { | 9 interface ScreenOrientation { |
| 10 LockOrientation(blink.mojom.ScreenOrientationLockType orientation) => | 10 LockOrientation(blink.mojom.ScreenOrientationLockType orientation) => |
| 11 (blink.mojom.ScreenOrientationLockResult result); | 11 (blink.mojom.ScreenOrientationLockResult result); |
| 12 UnlockOrientation(); | 12 UnlockOrientation(); |
| 13 }; | 13 }; |
| OLD | NEW |