| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; | 259 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; |
| 260 | 260 |
| 261 void setPageScaleFactor(float scaleFactor, ExceptionState&); | 261 void setPageScaleFactor(float scaleFactor, ExceptionState&); |
| 262 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex
ceptionState&); | 262 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex
ceptionState&); |
| 263 | 263 |
| 264 bool magnifyScaleAroundAnchor(float factor, float x, float y); | 264 bool magnifyScaleAroundAnchor(float factor, float x, float y); |
| 265 | 265 |
| 266 void setIsCursorVisible(Document*, bool, ExceptionState&); | 266 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 267 | 267 |
| 268 double effectiveMediaVolume(HTMLMediaElement*); | 268 double effectiveMediaVolume(HTMLMediaElement*); |
| 269 String effectivePreload(HTMLMediaElement*); |
| 269 | 270 |
| 270 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); | 271 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); |
| 271 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 272 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 272 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); | 273 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); |
| 273 | 274 |
| 274 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 275 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 275 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); | 276 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); |
| 276 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 277 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 277 | 278 |
| 278 TypeConversions* typeConversions() const; | 279 TypeConversions* typeConversions() const; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 | 411 |
| 411 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 412 Member<InternalRuntimeFlags> m_runtimeFlags; | 413 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 413 | 414 |
| 414 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 415 }; | 416 }; |
| 416 | 417 |
| 417 } // namespace blink | 418 } // namespace blink |
| 418 | 419 |
| 419 #endif // Internals_h | 420 #endif // Internals_h |
| OLD | NEW |