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

Side by Side Diff: third_party/WebKit/Source/core/testing/DictionaryTest.idl

Issue 2616923002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Fix errors Created 3 years, 11 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 interface DictionaryTest { 5 interface DictionaryTest {
6 void set(optional InternalDictionary testingDictionary); 6 void set(optional InternalDictionary testingDictionary);
7 InternalDictionary get(); 7 InternalDictionary get();
8 [CallWith=ScriptState] object getDictionaryMemberProperties(); 8 [CallWith=ScriptState] object getDictionaryMemberProperties();
9 9
10 void setDerived(InternalDictionaryDerived derived); 10 void setDerived(InternalDictionaryDerived derived);
11 InternalDictionaryDerived getDerived(); 11 InternalDictionaryDerived getDerived();
12 12
13 void setDerivedDerived(InternalDictionaryDerivedDerived derived); 13 void setDerivedDerived(InternalDictionaryDerivedDerived derived);
14 InternalDictionaryDerivedDerived getDerivedDerived(); 14 InternalDictionaryDerivedDerived getDerivedDerived();
15 15
16 [CallWith=ExecutionContext, RaisesException] DOMString stringFromIterable(Di ctionary iterableDictionary); 16 [CallWith=ScriptState, RaisesException] DOMString stringFromIterable(Diction ary iterableDictionary);
17 }; 17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698