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

Unified Diff: third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp

Issue 1657993002: [SPv2] Use pre-computed paint property context for layer painter and disable fragmentation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chunk_property_hookup_1
Patch Set: update tree printer Created 4 years, 10 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/core/paint/ObjectPaintProperties.cpp
diff --git a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp b/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
deleted file mode 100644
index a8a566c89108050187e8ab16e255c88b6d30caec..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "core/paint/ObjectPaintProperties.h"
-
-namespace blink {
-
-TransformPaintPropertyNode* ObjectPaintProperties::transformForLayerContents() const
-{
- // See the hierarchy diagram in the header.
- if (m_transform)
- return m_transform.get();
- if (m_paintOffsetTranslation)
- return m_paintOffsetTranslation.get();
- return nullptr;
-}
-
-} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698