OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
3 * reserved. | 3 * 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "core/editing/EphemeralRange.h" | 34 #include "core/editing/EphemeralRange.h" |
35 #include "core/editing/VisiblePosition.h" | 35 #include "core/editing/VisiblePosition.h" |
36 #include "core/editing/VisibleSelection.h" | 36 #include "core/editing/VisibleSelection.h" |
37 #include "core/editing/iterators/TextIteratorBehavior.h" | 37 #include "core/editing/iterators/TextIteratorBehavior.h" |
38 #include "core/layout/ScrollAlignment.h" | 38 #include "core/layout/ScrollAlignment.h" |
39 #include "platform/Timer.h" | 39 #include "platform/Timer.h" |
40 #include "platform/geometry/IntRect.h" | 40 #include "platform/geometry/IntRect.h" |
41 #include "platform/geometry/LayoutRect.h" | 41 #include "platform/geometry/LayoutRect.h" |
42 #include "platform/graphics/PaintInvalidationReason.h" | 42 #include "platform/graphics/PaintInvalidationReason.h" |
43 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
44 #include "wtf/Noncopyable.h" | 44 #include "platform/wtf/Noncopyable.h" |
45 | 45 |
46 namespace blink { | 46 namespace blink { |
47 | 47 |
48 class DisplayItemClient; | 48 class DisplayItemClient; |
49 class LayoutBlock; | 49 class LayoutBlock; |
50 class LocalFrame; | 50 class LocalFrame; |
51 class FrameCaret; | 51 class FrameCaret; |
52 class GranularityStrategy; | 52 class GranularityStrategy; |
53 class GraphicsContext; | 53 class GraphicsContext; |
54 class HTMLFormElement; | 54 class HTMLFormElement; |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 312 |
313 } // namespace blink | 313 } // namespace blink |
314 | 314 |
315 #ifndef NDEBUG | 315 #ifndef NDEBUG |
316 // Outside the WebCore namespace for ease of invocation from gdb. | 316 // Outside the WebCore namespace for ease of invocation from gdb. |
317 void showTree(const blink::FrameSelection&); | 317 void showTree(const blink::FrameSelection&); |
318 void showTree(const blink::FrameSelection*); | 318 void showTree(const blink::FrameSelection*); |
319 #endif | 319 #endif |
320 | 320 |
321 #endif // FrameSelection_h | 321 #endif // FrameSelection_h |
OLD | NEW |