| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class CanvasRenderingContext2D; | 44 class CanvasRenderingContext2D; |
| 45 class ClientRect; | 45 class ClientRect; |
| 46 class ClientRectList; | 46 class ClientRectList; |
| 47 class DOMArrayBuffer; | 47 class DOMArrayBuffer; |
| 48 class DOMPoint; | 48 class DOMPoint; |
| 49 class DOMStringList; | |
| 50 class DictionaryTest; | 49 class DictionaryTest; |
| 51 class Document; | 50 class Document; |
| 52 class DocumentFragment; | 51 class DocumentFragment; |
| 53 class DocumentMarker; | 52 class DocumentMarker; |
| 54 class Element; | 53 class Element; |
| 55 class ExceptionState; | 54 class ExceptionState; |
| 56 class ExecutionContext; | |
| 57 class GCObservation; | 55 class GCObservation; |
| 58 class HTMLElement; | 56 class HTMLElement; |
| 59 class HTMLMediaElement; | 57 class HTMLMediaElement; |
| 60 class InternalRuntimeFlags; | 58 class InternalRuntimeFlags; |
| 61 class InternalSettings; | 59 class InternalSettings; |
| 62 class Iterator; | 60 class Iterator; |
| 63 class LayerRectList; | 61 class LayerRectList; |
| 64 class LocalDOMWindow; | 62 class LocalDOMWindow; |
| 65 class LocalFrame; | 63 class LocalFrame; |
| 66 class Node; | 64 class Node; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 343 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 346 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 344 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 347 | 345 |
| 348 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 346 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 349 Member<InternalRuntimeFlags> m_runtimeFlags; | 347 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 350 }; | 348 }; |
| 351 | 349 |
| 352 } // namespace blink | 350 } // namespace blink |
| 353 | 351 |
| 354 #endif // Internals_h | 352 #endif // Internals_h |
| OLD | NEW |