| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef FrameSelection_h | 26 #ifndef FrameSelection_h |
| 27 #define FrameSelection_h | 27 #define FrameSelection_h |
| 28 | 28 |
| 29 #include "core/dom/Range.h" | 29 #include "core/dom/Range.h" |
| 30 #include "core/editing/Caret.h" | 30 #include "core/editing/Caret.h" |
| 31 #include "core/editing/EditingStyle.h" | 31 #include "core/editing/EditingStyle.h" |
| 32 #include "core/editing/VisibleSelection.h" | 32 #include "core/editing/VisibleSelection.h" |
| 33 #include "core/platform/Timer.h" | 33 #include "core/platform/Timer.h" |
| 34 #include "core/platform/graphics/IntRect.h" | |
| 35 #include "core/platform/graphics/LayoutRect.h" | |
| 36 #include "core/rendering/ScrollBehavior.h" | 34 #include "core/rendering/ScrollBehavior.h" |
| 35 #include "platform/geometry/IntRect.h" |
| 36 #include "platform/geometry/LayoutRect.h" |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class CharacterData; | 41 class CharacterData; |
| 42 class Frame; | 42 class Frame; |
| 43 class GraphicsContext; | 43 class GraphicsContext; |
| 44 class HTMLFormElement; | 44 class HTMLFormElement; |
| 45 class MutableStylePropertySet; | 45 class MutableStylePropertySet; |
| 46 class RenderObject; | 46 class RenderObject; |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 } | 291 } |
| 292 } // namespace WebCore | 292 } // namespace WebCore |
| 293 | 293 |
| 294 #ifndef NDEBUG | 294 #ifndef NDEBUG |
| 295 // Outside the WebCore namespace for ease of invocation from gdb. | 295 // Outside the WebCore namespace for ease of invocation from gdb. |
| 296 void showTree(const WebCore::FrameSelection&); | 296 void showTree(const WebCore::FrameSelection&); |
| 297 void showTree(const WebCore::FrameSelection*); | 297 void showTree(const WebCore::FrameSelection*); |
| 298 #endif | 298 #endif |
| 299 | 299 |
| 300 #endif // FrameSelection_h | 300 #endif // FrameSelection_h |
| OLD | NEW |