| Index: Source/core/editing/Editor.cpp
|
| diff --git a/Source/core/editing/Editor.cpp b/Source/core/editing/Editor.cpp
|
| index c83d48d5e4fbd02617bd21b9970f1281ce8f04ee..d834513ea794ae905bafd1b1c9ee517659f80e66 100644
|
| --- a/Source/core/editing/Editor.cpp
|
| +++ b/Source/core/editing/Editor.cpp
|
| @@ -88,7 +88,6 @@
|
|
|
| namespace WebCore {
|
|
|
| -using namespace std;
|
| using namespace HTMLNames;
|
| using namespace WTF;
|
| using namespace Unicode;
|
| @@ -1130,10 +1129,10 @@ IntRect Editor::firstRectForRange(Range* range) const
|
|
|
| if (startCaretRect.y() == endCaretRect.y()) {
|
| // start and end are on the same line
|
| - return IntRect(min(startCaretRect.x(), endCaretRect.x()),
|
| + return IntRect(std::min(startCaretRect.x(), endCaretRect.x()),
|
| startCaretRect.y(),
|
| - abs(endCaretRect.x() - startCaretRect.x()),
|
| - max(startCaretRect.height(), endCaretRect.height()));
|
| + std::abs(endCaretRect.x() - startCaretRect.x()),
|
| + std::max(startCaretRect.height(), endCaretRect.height()));
|
| }
|
|
|
| // start and end aren't on the same line, so go from start to the end of its line
|
|
|