| 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*); | 237 bool shouldApplyViewportStyleOverride(Document*); |
| 238 | 238 |
| 239 [Page, Inline=FastReturn] | 239 [Page, Inline=FastReturn] |
| 240 void applyEmulatedMedia(LocalFrame*, String* media); | 240 void applyEmulatedMedia(LocalFrame*, String* media); |
| 241 | 241 |
| 242 [Resource] | 242 [Resource] |
| 243 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); | 243 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); |
| 244 | 244 |
| 245 [Resource] | 245 [Resource] |
| 246 void markResourceAsCached(LocalFrame*, unsigned long identifier); | 246 void markResourceAsCached(LocalFrame*, unsigned long identifier); |
| 247 | 247 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 interface InspectorCanvasInstrumentation { | 466 interface InspectorCanvasInstrumentation { |
| 467 | 467 |
| 468 #include "bindings/core/v8/ScriptValue.h" | 468 #include "bindings/core/v8/ScriptValue.h" |
| 469 | 469 |
| 470 [Canvas] | 470 [Canvas] |
| 471 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 471 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 472 | 472 |
| 473 [Canvas] | 473 [Canvas] |
| 474 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 474 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 475 } | 475 } |
| OLD | NEW |