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

Unified Diff: Source/bindings/tests/idls/TestObject.idl

Issue 17851002: Use & instead of | in the value of [CallWith] / [SetterCallWith] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/bindings/scripts/generate-bindings.pl ('k') | Source/core/page/Console.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestObject.idl
diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl
index ad01ea3ca10b66726cdc973e279a1b839e533d65..61d4dfa54453df8941f5add9178f71292fe65480 100644
--- a/Source/bindings/tests/idls/TestObject.idl
+++ b/Source/bindings/tests/idls/TestObject.idl
@@ -121,19 +121,19 @@ callback TestCallbackFunction = void (TestEnumType formal1, TestObject formal2);
[CallWith=ScriptState, RaisesException] void withScriptStateVoidException();
[CallWith=ScriptState, RaisesException] TestObject withScriptStateObjException();
[CallWith=ScriptExecutionContext] void withScriptExecutionContext();
- [CallWith=ScriptExecutionContext|ScriptState] void withScriptExecutionContextAndScriptState();
- [CallWith=ScriptExecutionContext|ScriptState, RaisesException] TestObject withScriptExecutionContextAndScriptStateObjException();
- [CallWith= ScriptExecutionContext | ScriptState ] TestObject withScriptExecutionContextAndScriptStateWithSpaces();
- [CallWith=ActiveWindow|FirstWindow] void withActiveWindowAndFirstWindow();
+ [CallWith=ScriptExecutionContext&ScriptState] void withScriptExecutionContextAndScriptState();
+ [CallWith=ScriptExecutionContext&ScriptState, RaisesException] TestObject withScriptExecutionContextAndScriptStateObjException();
+ [CallWith= ScriptExecutionContext & ScriptState ] TestObject withScriptExecutionContextAndScriptStateWithSpaces();
+ [CallWith=ActiveWindow&FirstWindow] void withActiveWindowAndFirstWindow();
[CallWith=ScriptState] attribute long withScriptStateAttribute;
[CallWith=ScriptExecutionContext] attribute TestObject withScriptExecutionContextAttribute;
- [SetterCallWith=ActiveWindow|FirstWindow] attribute TestObject withActiveWindowAndFirstWindowAttribute;
+ [SetterCallWith=ActiveWindow&FirstWindow] attribute TestObject withActiveWindowAndFirstWindowAttribute;
[CallWith=ScriptState, GetterRaisesException] attribute TestObject withScriptStateAttributeRaises;
[CallWith=ScriptExecutionContext, GetterRaisesException] attribute TestObject withScriptExecutionContextAttributeRaises;
- [CallWith=ScriptExecutionContext|ScriptState] attribute TestObject withScriptExecutionContextAndScriptStateAttribute;
- [CallWith=ScriptExecutionContext|ScriptState, GetterRaisesException] attribute TestObject withScriptExecutionContextAndScriptStateAttributeRaises;
- [CallWith= ScriptExecutionContext | ScriptState ] attribute TestObject withScriptExecutionContextAndScriptStateWithSpacesAttribute;
+ [CallWith=ScriptExecutionContext&ScriptState] attribute TestObject withScriptExecutionContextAndScriptStateAttribute;
+ [CallWith=ScriptExecutionContext&ScriptState, GetterRaisesException] attribute TestObject withScriptExecutionContextAndScriptStateAttributeRaises;
+ [CallWith= ScriptExecutionContext & ScriptState ] attribute TestObject withScriptExecutionContextAndScriptStateWithSpacesAttribute;
// optional parameters
void methodWithOptionalArg(optional long opt);
« no previous file with comments | « Source/bindings/scripts/generate-bindings.pl ('k') | Source/core/page/Console.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698