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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 | 248 |
249 void setIsCursorVisible(Document*, bool, ExceptionState&); | 249 void setIsCursorVisible(Document*, bool, ExceptionState&); |
250 | 250 |
251 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 251 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
252 double effectiveMediaVolume(HTMLMediaElement*); | 252 double effectiveMediaVolume(HTMLMediaElement*); |
253 | 253 |
254 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); | 254 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); |
255 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 255 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
256 | 256 |
257 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 257 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 258 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme,
const Vector<String>& policyAreas); |
258 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 259 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
259 | 260 |
260 TypeConversions* typeConversions() const; | 261 TypeConversions* typeConversions() const; |
261 PrivateScriptTest* privateScriptTest() const; | 262 PrivateScriptTest* privateScriptTest() const; |
262 DictionaryTest* dictionaryTest() const; | 263 DictionaryTest* dictionaryTest() const; |
263 UnionTypesTest* unionTypesTest() const; | 264 UnionTypesTest* unionTypesTest() const; |
264 | 265 |
265 Vector<String> getReferencedFilePaths() const; | 266 Vector<String> getReferencedFilePaths() const; |
266 | 267 |
267 void startTrackingRepaints(Document*, ExceptionState&); | 268 void startTrackingRepaints(Document*, ExceptionState&); |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 344 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
344 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 345 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
345 | 346 |
346 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 347 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
347 Member<InternalRuntimeFlags> m_runtimeFlags; | 348 Member<InternalRuntimeFlags> m_runtimeFlags; |
348 }; | 349 }; |
349 | 350 |
350 } // namespace blink | 351 } // namespace blink |
351 | 352 |
352 #endif // Internals_h | 353 #endif // Internals_h |
OLD | NEW |