Index: Source/core/svg/animation/SMILTimeContainer.cpp |
diff --git a/Source/core/svg/animation/SMILTimeContainer.cpp b/Source/core/svg/animation/SMILTimeContainer.cpp |
index 8f3f12ec7bc0c8991fae839b9a38a903bad451ce..be1fb7e3e23341655a5e746537407e88d7503346 100644 |
--- a/Source/core/svg/animation/SMILTimeContainer.cpp |
+++ b/Source/core/svg/animation/SMILTimeContainer.cpp |
@@ -33,8 +33,6 @@ |
#include "core/svg/SVGSVGElement.h" |
#include "core/svg/animation/SVGSMILElement.h" |
-using namespace std; |
- |
namespace WebCore { |
static const double initialFrameDelay = 0.025; |
@@ -423,7 +421,7 @@ SMILTime SMILTimeContainer::updateAnimations(SMILTime elapsed, bool seekToTime) |
SMILTime nextFireTime = animation->nextProgressTime(); |
if (nextFireTime.isFinite()) |
- earliestFireTime = min(nextFireTime, earliestFireTime); |
+ earliestFireTime = std::min(nextFireTime, earliestFireTime); |
} |
if (resultElement) |