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

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

Issue 2022563002: Remove display item scope (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/core/paint/ScopeRecorder.cpp
diff --git a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp b/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp
deleted file mode 100644
index ab097e38ede1e2fded5248b9a25e462f481d4d5a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp
+++ /dev/null
@@ -1,23 +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/ScopeRecorder.h"
-
-#include "platform/graphics/GraphicsContext.h"
-#include "platform/graphics/paint/PaintController.h"
-
-namespace blink {
-
-ScopeRecorder::ScopeRecorder(GraphicsContext& context)
- : m_paintController(context.getPaintController())
-{
- m_paintController.beginScope();
-}
-
-ScopeRecorder::~ScopeRecorder()
-{
- m_paintController.endScope();
-}
-
-} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/paint/ScopeRecorder.h ('k') | third_party/WebKit/Source/core/paint/TablePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698