| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) cons
t; | 239 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) cons
t; |
| 240 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; | 240 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; |
| 241 | 241 |
| 242 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); | 242 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); |
| 243 | 243 |
| 244 void setIsCursorVisible(Document*, bool, ExceptionState&); | 244 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 245 | 245 |
| 246 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 246 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
| 247 double effectiveMediaVolume(HTMLMediaElement*); | 247 double effectiveMediaVolume(HTMLMediaElement*); |
| 248 | 248 |
| 249 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement *, bool); |
| 250 |
| 249 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 251 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 250 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 252 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 251 | 253 |
| 252 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; | 254 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; |
| 253 PrivateScriptTest* privateScriptTest() const; | 255 PrivateScriptTest* privateScriptTest() const; |
| 254 | 256 |
| 255 Vector<String> getReferencedFilePaths() const; | 257 Vector<String> getReferencedFilePaths() const; |
| 256 | 258 |
| 257 void startTrackingRepaints(Document*, ExceptionState&); | 259 void startTrackingRepaints(Document*, ExceptionState&); |
| 258 void stopTrackingRepaints(Document*, ExceptionState&); | 260 void stopTrackingRepaints(Document*, ExceptionState&); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 325 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 324 | 326 |
| 325 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 327 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 326 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 328 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
| 327 RefPtrWillBeMember<InternalProfilers> m_profilers; | 329 RefPtrWillBeMember<InternalProfilers> m_profilers; |
| 328 }; | 330 }; |
| 329 | 331 |
| 330 } // namespace blink | 332 } // namespace blink |
| 331 | 333 |
| 332 #endif | 334 #endif |
| OLD | NEW |