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

Unified Diff: Source/core/dom/XMLDocument.cpp

Issue 144063004: Add support for DOM4's XMLDocument interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove FIXME about XMLDocument.load() 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 | « Source/core/dom/XMLDocument.h ('k') | Source/core/dom/XMLDocument.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/XMLDocument.cpp
diff --git a/Source/core/speech/SpeechInputEvent.idl b/Source/core/dom/XMLDocument.cpp
similarity index 79%
copy from Source/core/speech/SpeechInputEvent.idl
copy to Source/core/dom/XMLDocument.cpp
index 4fe740b1bdbaffe6a3542de082bbe4b5194c95ee..3fb1b8fed695614e26abab57a4680f2ef3b04307 100644
--- a/Source/core/speech/SpeechInputEvent.idl
+++ b/Source/core/dom/XMLDocument.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2014 Samsung Electronics. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -23,9 +23,15 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- Conditional=INPUT_SPEECH
-] interface SpeechInputEvent : Event {
- readonly attribute SpeechInputResultList results;
-};
+#include "config.h"
+#include "XMLDocument.h"
+namespace WebCore {
+
+XMLDocument::XMLDocument(const DocumentInit& initializer, DocumentClassFlags documentClasses)
+ : Document(initializer, documentClasses)
+{
+ ScriptWrappable::init(this);
+}
+
+} // namespace WebCore
« no previous file with comments | « Source/core/dom/XMLDocument.h ('k') | Source/core/dom/XMLDocument.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698