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

Unified Diff: Source/bindings/tests/idls/testing/TestSupportTestPartialInterface.idl

Issue 24053003: Support partial interface for test support idls (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use one InterfaceDependencies.txt file Created 7 years, 3 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: Source/bindings/tests/idls/testing/TestSupportTestPartialInterface.idl
diff --git a/Source/bindings/tests/idls/TestPartialInterface.idl b/Source/bindings/tests/idls/testing/TestSupportTestPartialInterface.idl
similarity index 78%
copy from Source/bindings/tests/idls/TestPartialInterface.idl
copy to Source/bindings/tests/idls/testing/TestSupportTestPartialInterface.idl
index 926cc0e452be5f73b2218a3a4576220846b2de67..c7671fe5c177224e20454de9889688a98a923957 100644
--- a/Source/bindings/tests/idls/TestPartialInterface.idl
+++ b/Source/bindings/tests/idls/testing/TestSupportTestPartialInterface.idl
@@ -1,7 +1,7 @@
/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
+ * Copyright (C) 2013 Samsung Electronics. All rights reserved.
*
- * Redistribution and use in source and binary formstrArg, with or without
+ * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
@@ -10,12 +10,9 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
Nils Barth (inactive) 2013/09/12 03:47:17 Could you modify the copyright block as mentioned
kihong 2013/09/14 04:14:43 Done.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- * its contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIEstrArg, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
@@ -26,11 +23,10 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// This IDL file is for testing the bindings code generator and for tracking
-// changes in its ouput.
[
Conditional=Condition11|Condition12
-] partial interface TestInterface {
+] partial interface TestSupportTestInterface {
+ // This IDL file is for testing the bindings code generator and for test support files
static readonly attribute long supplementalStaticReadOnlyAttr;
static attribute DOMString supplementalStaticAttr;
readonly attribute DOMString supplementalStr1;
@@ -49,5 +45,4 @@
[EnabledAtRuntime=Condition13] attribute Node Node13;
[EnabledPerContext=Condition14] attribute Node Node14;
[EnabledAtRuntime=Condition15, EnabledPerContext=Condition16] attribute Node Node15;
-
};

Powered by Google App Engine
This is Rietveld 408576698