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