| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 [Resource] | 284 [Resource] |
| 285 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext*
, unsigned long identifier, ThreadableLoaderClient* client); | 285 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext*
, unsigned long identifier, ThreadableLoaderClient* client); |
| 286 | 286 |
| 287 [Resource] | 287 [Resource] |
| 288 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co
nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT
PHeaderMap& headers, bool includeCredentials); | 288 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co
nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT
PHeaderMap& headers, bool includeCredentials); |
| 289 | 289 |
| 290 [Resource] | 290 [Resource] |
| 291 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); | 291 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); |
| 292 | 292 |
| 293 [Console, Resource] | 293 [Console, Resource] |
| 294 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, const String& sourceString, const String& url, c
onst String& sendURL, unsigned sendLineNumber); | 294 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); |
| 295 | 295 |
| 296 [Resource] | 296 [Resource] |
| 297 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); | 297 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); |
| 298 | 298 |
| 299 [Resource] | 299 [Resource] |
| 300 void willLoadXHRSynchronously(ScriptExecutionContext*); | 300 void willLoadXHRSynchronously(ScriptExecutionContext*); |
| 301 | 301 |
| 302 [Resource] | 302 [Resource] |
| 303 void didLoadXHRSynchronously(ScriptExecutionContext*); | 303 void didLoadXHRSynchronously(ScriptExecutionContext*); |
| 304 | 304 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 | 481 |
| 482 [Page, Inline=FastReturn] | 482 [Page, Inline=FastReturn] |
| 483 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); | 483 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); |
| 484 | 484 |
| 485 [Page, Inline=FastReturn] | 485 [Page, Inline=FastReturn] |
| 486 DeviceOrientationData* overrideDeviceOrientation(Page* page, [DefaultReturn]
DeviceOrientationData* deviceOrientation); | 486 DeviceOrientationData* overrideDeviceOrientation(Page* page, [DefaultReturn]
DeviceOrientationData* deviceOrientation); |
| 487 | 487 |
| 488 [Profiler] | 488 [Profiler] |
| 489 String getCurrentUserInitiatedProfileName(Page* page, bool incrementProfileN
umber); | 489 String getCurrentUserInitiatedProfileName(Page* page, bool incrementProfileN
umber); |
| 490 } | 490 } |
| OLD | NEW |