| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) cons
t; | 246 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) cons
t; |
| 247 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; | 247 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti
onState& = ASSERT_NO_EXCEPTION) const; |
| 248 | 248 |
| 249 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); | 249 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); |
| 250 | 250 |
| 251 void setIsCursorVisible(Document*, bool, ExceptionState&); | 251 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 252 | 252 |
| 253 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 253 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
| 254 double effectiveMediaVolume(HTMLMediaElement*); | 254 double effectiveMediaVolume(HTMLMediaElement*); |
| 255 | 255 |
| 256 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement *, bool); | 256 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); |
| 257 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 257 | 258 |
| 258 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 259 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 259 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 260 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 260 | 261 |
| 261 TypeConversions* typeConversions() const; | 262 TypeConversions* typeConversions() const; |
| 262 PrivateScriptTest* privateScriptTest() const; | 263 PrivateScriptTest* privateScriptTest() const; |
| 263 DictionaryTest* dictionaryTest() const; | 264 DictionaryTest* dictionaryTest() const; |
| 264 | 265 |
| 265 Vector<String> getReferencedFilePaths() const; | 266 Vector<String> getReferencedFilePaths() const; |
| 266 | 267 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 337 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 337 | 338 |
| 338 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 339 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 339 Member<InternalRuntimeFlags> m_runtimeFlags; | 340 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 340 Member<InternalProfilers> m_profilers; | 341 Member<InternalProfilers> m_profilers; |
| 341 }; | 342 }; |
| 342 | 343 |
| 343 } // namespace blink | 344 } // namespace blink |
| 344 | 345 |
| 345 #endif // Internals_h | 346 #endif // Internals_h |
| OLD | NEW |