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

Unified Diff: core/frame/History.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/frame/ConsoleBase.idl ('k') | core/frame/ImageBitmap.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/frame/History.idl
diff --git a/core/page/History.idl b/core/frame/History.idl
similarity index 80%
rename from core/page/History.idl
rename to core/frame/History.idl
index d20cc890f1d8f690e6e9a76074550fdf92d9ca26..2b8cce4d93a4ef1fd5cc887acf1584c61b0138cc 100644
--- a/core/page/History.idl
+++ b/core/frame/History.idl
@@ -25,12 +25,12 @@
interface History {
readonly attribute unsigned long length;
- [Custom] readonly attribute SerializedScriptValue state;
+ [CustomGetter] readonly attribute SerializedScriptValue state;
- [CallWith=ScriptExecutionContext] void back();
- [CallWith=ScriptExecutionContext] void forward();
- [CallWith=ScriptExecutionContext] void go([Default=Undefined] optional long distance);
+ [CallWith=ExecutionContext] void back();
+ [CallWith=ExecutionContext] void forward();
+ [CallWith=ExecutionContext] void go([Default=Undefined] optional long distance);
- [Custom, EnabledPerContext=pushState, RaisesException] void pushState(any data, DOMString title, optional DOMString url);
- [Custom, EnabledPerContext=pushState, RaisesException] void replaceState(any data, DOMString title, optional DOMString url);
+ [Custom, PerContextEnabled=PushState, RaisesException] void pushState(any data, DOMString title, optional DOMString url);
+ [Custom, PerContextEnabled=PushState, RaisesException] void replaceState(any data, DOMString title, optional DOMString url);
};
« no previous file with comments | « core/frame/ConsoleBase.idl ('k') | core/frame/ImageBitmap.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698