Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1218)

Side by Side Diff: Source/core/editing/VisiblePosition.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/editing/SpellChecker.h ('k') | Source/core/editing/markup.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
3 * Portions Copyright (c) 2011 Motorola Mobility, Inc. All rights reserved. 3 * Portions Copyright (c) 2011 Motorola Mobility, 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 * 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 14 matching lines...) Expand all
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "VisiblePosition.h" 28 #include "VisiblePosition.h"
29 29
30 #include <stdio.h> 30 #include <stdio.h>
31 #include "Document.h" 31 #include "Document.h"
32 #include "HTMLElement.h" 32 #include "HTMLElement.h"
33 #include "HTMLNames.h" 33 #include "HTMLNames.h"
34 #include "InlineTextBox.h" 34 #include "InlineTextBox.h"
35 #include "Logging.h"
36 #include "Range.h" 35 #include "Range.h"
37 #include "RenderBlock.h" 36 #include "RenderBlock.h"
38 #include "RootInlineBox.h" 37 #include "RootInlineBox.h"
39 #include "Text.h" 38 #include "Text.h"
40 #include "VisibleUnits.h" 39 #include "VisibleUnits.h"
40 #include "core/platform/Logging.h"
41 #include "core/platform/graphics/FloatQuad.h" 41 #include "core/platform/graphics/FloatQuad.h"
42 #include "htmlediting.h" 42 #include "htmlediting.h"
43 #include <wtf/text/CString.h> 43 #include <wtf/text/CString.h>
44 44
45 namespace WebCore { 45 namespace WebCore {
46 46
47 using namespace HTMLNames; 47 using namespace HTMLNames;
48 48
49 VisiblePosition::VisiblePosition(const Position &pos, EAffinity affinity) 49 VisiblePosition::VisiblePosition(const Position &pos, EAffinity affinity)
50 { 50 {
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 if (vpos) 752 if (vpos)
753 vpos->showTreeForThis(); 753 vpos->showTreeForThis();
754 } 754 }
755 755
756 void showTree(const WebCore::VisiblePosition& vpos) 756 void showTree(const WebCore::VisiblePosition& vpos)
757 { 757 {
758 vpos.showTreeForThis(); 758 vpos.showTreeForThis();
759 } 759 }
760 760
761 #endif 761 #endif
OLDNEW
« no previous file with comments | « Source/core/editing/SpellChecker.h ('k') | Source/core/editing/markup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698