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

Side by Side Diff: third_party/WebKit/Source/core/clipboard/Clipboard.idl

Issue 2695593006: Initial stub version of Async Clipboard API (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 [SecureContext]
foolip 2017/02/21 11:13:18 Can you include a link to https://w3c.github.io/cl
garykac 2017/05/12 21:16:38 Done.
6 interface Clipboard : EventTarget {
7 [CallWith=ScriptState] Promise read();
foolip 2017/02/21 11:13:18 Can you include the <DataTransfer> and similar her
garykac 2017/05/12 21:16:38 Done.
8 [CallWith=ScriptState] Promise readText();
foolip 2017/02/21 11:13:18 This and writeText() isn't in the spec, should it
garykac 2017/05/12 21:16:38 Done.
9
10 [CallWith=ScriptState] Promise write(DataTransfer data);
11 [CallWith=ScriptState] Promise writeText(DOMString data);
12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698