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

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

Issue 329183002: Removing "using" declarations that import names in the C++ Standard library. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Trybot Errors Created 6 years, 6 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
« no previous file with comments | « Source/core/editing/TextIterator.cpp ('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 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/html/HTMLOListElement.h" 50 #include "core/html/HTMLOListElement.h"
51 #include "core/html/HTMLParagraphElement.h" 51 #include "core/html/HTMLParagraphElement.h"
52 #include "core/html/HTMLTableCellElement.h" 52 #include "core/html/HTMLTableCellElement.h"
53 #include "core/html/HTMLUListElement.h" 53 #include "core/html/HTMLUListElement.h"
54 #include "core/rendering/RenderObject.h" 54 #include "core/rendering/RenderObject.h"
55 #include "core/rendering/RenderTableCell.h" 55 #include "core/rendering/RenderTableCell.h"
56 #include "wtf/Assertions.h" 56 #include "wtf/Assertions.h"
57 #include "wtf/StdLibExtras.h" 57 #include "wtf/StdLibExtras.h"
58 #include "wtf/text/StringBuilder.h" 58 #include "wtf/text/StringBuilder.h"
59 59
60 using namespace std;
61
62 namespace WebCore { 60 namespace WebCore {
63 61
64 using namespace HTMLNames; 62 using namespace HTMLNames;
65 63
66 // Atomic means that the node has no children, or has children which are ignored for the 64 // Atomic means that the node has no children, or has children which are ignored for the
67 // purposes of editing. 65 // purposes of editing.
68 bool isAtomicNode(const Node *node) 66 bool isAtomicNode(const Node *node)
69 { 67 {
70 return node && (!node->hasChildren() || editingIgnoresContent(node)); 68 return node && (!node->hasChildren() || editingIgnoresContent(node));
71 } 69 }
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 // if the selection starts just before a paragraph break, skip over it 1111 // if the selection starts just before a paragraph break, skip over it
1114 if (isEndOfParagraph(visiblePosition)) 1112 if (isEndOfParagraph(visiblePosition))
1115 return visiblePosition.next().deepEquivalent().downstream(); 1113 return visiblePosition.next().deepEquivalent().downstream();
1116 1114
1117 // otherwise, make sure to be at the start of the first selected node, 1115 // otherwise, make sure to be at the start of the first selected node,
1118 // instead of possibly at the end of the last node before the selection 1116 // instead of possibly at the end of the last node before the selection
1119 return visiblePosition.deepEquivalent().downstream(); 1117 return visiblePosition.deepEquivalent().downstream();
1120 } 1118 }
1121 1119
1122 } // namespace WebCore 1120 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/editing/TextIterator.cpp ('k') | Source/core/editing/markup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698