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

Unified Diff: Source/platform/transforms/PerspectiveTransformOperation.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/platform/transforms/PerspectiveTransformOperation.cpp
diff --git a/Source/platform/transforms/PerspectiveTransformOperation.cpp b/Source/platform/transforms/PerspectiveTransformOperation.cpp
index 7c805c1d5efdb1a296c25fc61e334ed15aeea020..cc5f89e22c7f6efd695da9b205444a09b64908fd 100644
--- a/Source/platform/transforms/PerspectiveTransformOperation.cpp
+++ b/Source/platform/transforms/PerspectiveTransformOperation.cpp
@@ -31,7 +31,7 @@
using namespace std;
-namespace WebCore {
+namespace blink {
PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
{
@@ -39,7 +39,7 @@ PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const Transf
return this;
if (blendToIdentity) {
- double p = WebCore::blend(m_p, 1., progress); // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
+ double p = blink::blend(m_p, 1., progress); // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
return PerspectiveTransformOperation::create(clampToPositiveInteger(p));
}
@@ -60,4 +60,4 @@ PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const Transf
return PerspectiveTransformOperation::create(0);
}
-} // namespace WebCore
+} // namespace blink
« no previous file with comments | « Source/platform/transforms/PerspectiveTransformOperation.h ('k') | Source/platform/transforms/RotateTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698