| 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 30 matching lines...) Expand all Loading... |
| 41 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class CanvasRenderingContext2D; | 45 class CanvasRenderingContext2D; |
| 46 class ClientRect; | 46 class ClientRect; |
| 47 class ClientRectList; | 47 class ClientRectList; |
| 48 class WebKitPoint; | 48 class WebKitPoint; |
| 49 class DOMStringList; | 49 class DOMStringList; |
| 50 class LocalDOMWindow; | 50 class LocalDOMWindow; |
| 51 class DictionaryTest; |
| 51 class Document; | 52 class Document; |
| 52 class DocumentMarker; | 53 class DocumentMarker; |
| 53 class Element; | 54 class Element; |
| 54 class ExceptionState; | 55 class ExceptionState; |
| 55 class ExecutionContext; | 56 class ExecutionContext; |
| 56 class GCObservation; | 57 class GCObservation; |
| 57 class HTMLElement; | 58 class HTMLElement; |
| 58 class HTMLMediaElement; | 59 class HTMLMediaElement; |
| 59 class InternalProfilers; | 60 class InternalProfilers; |
| 60 class InternalRuntimeFlags; | 61 class InternalRuntimeFlags; |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 void setIsCursorVisible(Document*, bool, ExceptionState&); | 245 void setIsCursorVisible(Document*, bool, ExceptionState&); |
| 245 | 246 |
| 246 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 247 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
| 247 double effectiveMediaVolume(HTMLMediaElement*); | 248 double effectiveMediaVolume(HTMLMediaElement*); |
| 248 | 249 |
| 249 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 250 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 250 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 251 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 251 | 252 |
| 252 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; | 253 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; |
| 253 PrivateScriptTest* privateScriptTest() const; | 254 PrivateScriptTest* privateScriptTest() const; |
| 255 DictionaryTest* dictionaryTest() 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&); |
| 259 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); | 261 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); |
| 260 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 262 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 261 void forceFullRepaint(Document*, ExceptionState&); | 263 void forceFullRepaint(Document*, ExceptionState&); |
| 262 | 264 |
| 263 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); | 265 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); |
| (...skipping 59 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 |