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: ui/views/view.cc

Issue 9288053: Remove old (pre-webkit) compositor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 11 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
« no previous file with comments | « ui/views/run_all_unittests.cc ('k') | ui/views/view_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view.cc
diff --git a/ui/views/view.cc b/ui/views/view.cc
index a8d4ec6eac0de7e76e5fb8dc47b09ef5c95f39fb..000cb4e7c79725b7a0991c43f53c4ed080b86b21 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -1370,17 +1370,6 @@ std::string View::DoPrintViewGraph(bool first, View* view_with_children) {
this->bounds().height());
result.append(bounds_buffer);
- if (layer() && !layer()->hole_rect().IsEmpty()) {
- base::snprintf(bounds_buffer,
- arraysize(bounds_buffer),
- "\\n hole bounds: (%d, %d), (%dx%d)",
- layer()->hole_rect().x(),
- layer()->hole_rect().y(),
- layer()->hole_rect().width(),
- layer()->hole_rect().height());
- result.append(bounds_buffer);
- }
-
if (GetTransform().HasChange()) {
gfx::Point translation;
float rotation;
« no previous file with comments | « ui/views/run_all_unittests.cc ('k') | ui/views/view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698