OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // http://webscreens.github.io/presentation-api/#presentation-extension-to-navig ator | |
6 | |
7 [ | |
8 RuntimeEnabled=Presentation | |
9 ] | |
Peter Beverloo
2014/09/12 12:22:09
nit: we usually don't have a blank line between "]
whywhat
2014/09/12 15:01:14
Done.
| |
10 partial interface Navigator { | |
11 readonly attribute Presentation presentation; | |
12 }; | |
OLD | NEW |