| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 attribute long alwaysExposedAttribute; | 86 attribute long alwaysExposedAttribute; |
| 87 [Exposed=Worker] attribute long workerExposedAttribute; | 87 [Exposed=Worker] attribute long workerExposedAttribute; |
| 88 [Exposed=Window] attribute long windowExposedAttribute; | 88 [Exposed=Window] attribute long windowExposedAttribute; |
| 89 | 89 |
| 90 [Exposed=Window, RuntimeEnabled=FeatureName] void methodWithExposedAndRuntim
eEnabledFlag(); | 90 [Exposed=Window, RuntimeEnabled=FeatureName] void methodWithExposedAndRuntim
eEnabledFlag(); |
| 91 [Exposed=Window] void overloadMethodWithExposedAndRuntimeEnabledFlag(long lo
ngArg); | 91 [Exposed=Window] void overloadMethodWithExposedAndRuntimeEnabledFlag(long lo
ngArg); |
| 92 [Exposed=Window, RuntimeEnabled=FeatureName] void overloadMethodWithExposedA
ndRuntimeEnabledFlag(DOMString string); | 92 [Exposed=Window, RuntimeEnabled=FeatureName] void overloadMethodWithExposedA
ndRuntimeEnabledFlag(DOMString string); |
| 93 [Exposed=Window, RuntimeEnabled=FeatureName2] void overloadMethodWithExposed
AndRuntimeEnabledFlag(Window window); | 93 [Exposed=Window, RuntimeEnabled=FeatureName2] void overloadMethodWithExposed
AndRuntimeEnabledFlag(Window window); |
| 94 | 94 |
| 95 [Exposed(Window FeatureName, Worker FeatureName2)] void methodWithExposedHav
ingRuntimeEnabldFlag(); |
| 96 |
| 95 [Exposed=(Window,ServiceWorker)] void windowAndServiceWorkerExposedMethod(); | 97 [Exposed=(Window,ServiceWorker)] void windowAndServiceWorkerExposedMethod(); |
| 96 | 98 |
| 97 void voidMethodPartialOverload(); | 99 void voidMethodPartialOverload(); |
| 98 void voidMethodPartialOverload(double doubleArg); | 100 void voidMethodPartialOverload(double doubleArg); |
| 99 static void staticVoidMethodPartialOverload(); | 101 static void staticVoidMethodPartialOverload(); |
| 100 | 102 |
| 101 Promise promiseMethodPartialOverload(); | 103 Promise promiseMethodPartialOverload(); |
| 102 Promise promiseMethodPartialOverload(Window window); | 104 Promise promiseMethodPartialOverload(Window window); |
| 103 static Promise staticPromiseMethodPartialOverload(); | 105 static Promise staticPromiseMethodPartialOverload(); |
| 104 }; | 106 }; |
| 105 | 107 |
| 106 TestInterface implements TestImplements; | 108 TestInterface implements TestImplements; |
| 107 // TestInterface implements TestImplements2; // at implement*ed* interface | 109 // TestInterface implements TestImplements2; // at implement*ed* interface |
| 108 TestInterface implements TestImplements3; | 110 TestInterface implements TestImplements3; |
| OLD | NEW |