| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 [Resource, Page, Inline=FastReturn] | 227 [Resource, Page, Inline=FastReturn] |
| 228 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); | 228 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); |
| 229 | 229 |
| 230 [Resource, Inline=FastReturn] | 230 [Resource, Inline=FastReturn] |
| 231 void didScheduleStyleRecalculation([Keep] Document*); | 231 void didScheduleStyleRecalculation([Keep] Document*); |
| 232 | 232 |
| 233 [Resource, Inline=FastReturn] | 233 [Resource, Inline=FastReturn] |
| 234 void applyUserAgentOverride(LocalFrame*, String* userAgent); | 234 void applyUserAgentOverride(LocalFrame*, String* userAgent); |
| 235 | 235 |
| 236 [Page, Inline=FastReturn] | 236 [Page, Inline=FastReturn] |
| 237 bool applyViewportStyleOverride(Document*, StyleResolver*); | |
| 238 | |
| 239 [Page, Inline=FastReturn] | |
| 240 void applyEmulatedMedia(LocalFrame*, String* media); | 237 void applyEmulatedMedia(LocalFrame*, String* media); |
| 241 | 238 |
| 242 [Resource] | 239 [Resource] |
| 243 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); | 240 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); |
| 244 | 241 |
| 245 [Resource] | 242 [Resource] |
| 246 void markResourceAsCached(LocalFrame*, unsigned long identifier); | 243 void markResourceAsCached(LocalFrame*, unsigned long identifier); |
| 247 | 244 |
| 248 [Resource] | 245 [Resource] |
| 249 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier
, DocumentLoader*, const ResourceResponse&, ResourceLoader*); | 246 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier
, DocumentLoader*, const ResourceResponse&, ResourceLoader*); |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 interface InspectorCanvasInstrumentation { | 463 interface InspectorCanvasInstrumentation { |
| 467 | 464 |
| 468 #include "bindings/core/v8/ScriptValue.h" | 465 #include "bindings/core/v8/ScriptValue.h" |
| 469 | 466 |
| 470 [Canvas] | 467 [Canvas] |
| 471 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 468 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 472 | 469 |
| 473 [Canvas] | 470 [Canvas] |
| 474 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 471 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 475 } | 472 } |
| OLD | NEW |