| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "platform/geometry/LayoutRect.h" | 36 #include "platform/geometry/LayoutRect.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "wtf/Noncopyable.h" | 38 #include "wtf/Noncopyable.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class CharacterData; | 42 class CharacterData; |
| 43 class LocalFrame; | 43 class LocalFrame; |
| 44 class GraphicsContext; | 44 class GraphicsContext; |
| 45 class HTMLFormElement; | 45 class HTMLFormElement; |
| 46 class MutableStylePropertySet; | |
| 47 class RenderObject; | |
| 48 class RenderView; | |
| 49 class Settings; | |
| 50 class Text; | 46 class Text; |
| 51 class VisiblePosition; | 47 class VisiblePosition; |
| 52 | 48 |
| 53 enum EUserTriggered { NotUserTriggered = 0, UserTriggered = 1 }; | 49 enum EUserTriggered { NotUserTriggered = 0, UserTriggered = 1 }; |
| 54 | 50 |
| 55 enum RevealExtentOption { | 51 enum RevealExtentOption { |
| 56 RevealExtent, | 52 RevealExtent, |
| 57 DoNotRevealExtent | 53 DoNotRevealExtent |
| 58 }; | 54 }; |
| 59 | 55 |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 } | 306 } |
| 311 } // namespace blink | 307 } // namespace blink |
| 312 | 308 |
| 313 #ifndef NDEBUG | 309 #ifndef NDEBUG |
| 314 // Outside the WebCore namespace for ease of invocation from gdb. | 310 // Outside the WebCore namespace for ease of invocation from gdb. |
| 315 void showTree(const blink::FrameSelection&); | 311 void showTree(const blink::FrameSelection&); |
| 316 void showTree(const blink::FrameSelection*); | 312 void showTree(const blink::FrameSelection*); |
| 317 #endif | 313 #endif |
| 318 | 314 |
| 319 #endif // FrameSelection_h | 315 #endif // FrameSelection_h |
| OLD | NEW |