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

Unified Diff: third_party/WebKit/Source/platform/geometry/TransformState.cpp

Issue 2011783002: Rename OwnPtr::clear() to reset() in platform/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/Source/platform/geometry/TransformState.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/TransformState.cpp b/third_party/WebKit/Source/platform/geometry/TransformState.cpp
index c119f0f8d48cfd1b8afb73dfd88b92288aa34bff..cdfc01207193863fa5f00fb38e47a8572659fd88 100644
--- a/third_party/WebKit/Source/platform/geometry/TransformState.cpp
+++ b/third_party/WebKit/Source/platform/geometry/TransformState.cpp
@@ -42,7 +42,7 @@ TransformState& TransformState::operator=(const TransformState& other)
m_forceAccumulatingTransform = other.m_forceAccumulatingTransform;
m_direction = other.m_direction;
- m_accumulatedTransform.clear();
+ m_accumulatedTransform.reset();
if (other.m_accumulatedTransform)
m_accumulatedTransform = TransformationMatrix::create(*other.m_accumulatedTransform);

Powered by Google App Engine
This is Rietveld 408576698