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

Unified Diff: third_party/WebCore/Modules/intents/DeliveredIntent.idl

Issue 10441106: Roll IDL to multivm@567 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
Index: third_party/WebCore/Modules/intents/DeliveredIntent.idl
diff --git a/third_party/WebCore/html/DOMURL.idl b/third_party/WebCore/Modules/intents/DeliveredIntent.idl
similarity index 67%
copy from third_party/WebCore/html/DOMURL.idl
copy to third_party/WebCore/Modules/intents/DeliveredIntent.idl
index df747c2956ccae63b0f9233de537f0131804365b..25e978debe7853f402c8f7a97fde804e62089d61 100644
--- a/third_party/WebCore/html/DOMURL.idl
+++ b/third_party/WebCore/Modules/intents/DeliveredIntent.idl
@@ -1,6 +1,5 @@
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
- * Copyright (C) 2012 Motorola Mobility Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -24,19 +23,14 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-module html {
+module window {
interface [
- Conditional=BLOB,
- Constructor,
- JSGenerateToNativeObject,
- JSGenerateToJSObject,
- JSNoStaticTables,
- InterfaceName=URL
- ] DOMURL {
-#if defined(ENABLE_MEDIA_STREAM) && ENABLE_MEDIA_STREAM
- [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Undefined] static DOMString createObjectURL(in MediaStream stream);
-#endif
- [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Undefined] static DOMString createObjectURL(in Blob blob);
- [CallWith=ScriptExecutionContext] static void revokeObjectURL(in DOMString url);
+ Conditional=WEB_INTENTS,
+ ] DeliveredIntent : Intent {
+ readonly attribute MessagePortArray ports;
+
+ [TreatReturnedNullStringAs=Null] DOMString getExtra(in DOMString key);
+ void postResult(in SerializedScriptValue result);
+ void postFailure(in SerializedScriptValue result);
};
}
« no previous file with comments | « third_party/WebCore/Modules/intents/DOMWindowIntents.idl ('k') | third_party/WebCore/Modules/mediastream/LocalMediaStream.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698