| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 DECLARE_PROPERTY_ACCESSOR(WorkerContextOnmessage); | 480 DECLARE_PROPERTY_ACCESSOR(WorkerContextOnmessage); |
| 481 DECLARE_CALLBACK(WorkerContextImportScripts); | 481 DECLARE_CALLBACK(WorkerContextImportScripts); |
| 482 DECLARE_CALLBACK(WorkerContextSetTimeout); | 482 DECLARE_CALLBACK(WorkerContextSetTimeout); |
| 483 DECLARE_CALLBACK(WorkerContextClearTimeout); | 483 DECLARE_CALLBACK(WorkerContextClearTimeout); |
| 484 DECLARE_CALLBACK(WorkerContextSetInterval); | 484 DECLARE_CALLBACK(WorkerContextSetInterval); |
| 485 DECLARE_CALLBACK(WorkerContextClearInterval); | 485 DECLARE_CALLBACK(WorkerContextClearInterval); |
| 486 DECLARE_CALLBACK(WorkerContextAddEventListener); | 486 DECLARE_CALLBACK(WorkerContextAddEventListener); |
| 487 DECLARE_CALLBACK(WorkerContextRemoveEventListener); | 487 DECLARE_CALLBACK(WorkerContextRemoveEventListener); |
| 488 #endif | 488 #endif |
| 489 | 489 |
| 490 DECLARE_CALLBACK(ChaosGeolocationWatchPosition); |
| 491 |
| 490 #undef DECLARE_INDEXED_ACCESS_CHECK | 492 #undef DECLARE_INDEXED_ACCESS_CHECK |
| 491 #undef DECLARE_NAMED_ACCESS_CHECK | 493 #undef DECLARE_NAMED_ACCESS_CHECK |
| 492 | 494 |
| 493 #undef DECLARE_PROPERTY_ACCESSOR_SETTER | 495 #undef DECLARE_PROPERTY_ACCESSOR_SETTER |
| 494 #undef DECLARE_PROPERTY_ACCESSOR_GETTER | 496 #undef DECLARE_PROPERTY_ACCESSOR_GETTER |
| 495 #undef DECLARE_PROPERTY_ACCESSOR | 497 #undef DECLARE_PROPERTY_ACCESSOR |
| 496 | 498 |
| 497 #undef DECLARE_NAMED_PROPERTY_GETTER | 499 #undef DECLARE_NAMED_PROPERTY_GETTER |
| 498 #undef DECLARE_NAMED_PROPERTY_SETTER | 500 #undef DECLARE_NAMED_PROPERTY_SETTER |
| 499 #undef DECLARE_NAMED_PROPERTY_DELETER | 501 #undef DECLARE_NAMED_PROPERTY_DELETER |
| (...skipping 18 matching lines...) Expand all Loading... |
| 518 | 520 |
| 519 private: | 521 private: |
| 520 static v8::Handle<v8::Value> WindowSetTimeoutImpl(const v8::Arguments&,
bool singleShot); | 522 static v8::Handle<v8::Value> WindowSetTimeoutImpl(const v8::Arguments&,
bool singleShot); |
| 521 static void ClearTimeoutImpl(const v8::Arguments&); | 523 static void ClearTimeoutImpl(const v8::Arguments&); |
| 522 static void WindowSetLocation(DOMWindow*, const String&); | 524 static void WindowSetLocation(DOMWindow*, const String&); |
| 523 }; | 525 }; |
| 524 | 526 |
| 525 } // namespace WebCore | 527 } // namespace WebCore |
| 526 | 528 |
| 527 #endif // V8CustomBinding_h | 529 #endif // V8CustomBinding_h |
| OLD | NEW |