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

Unified Diff: ui/views/layout/fill_layout.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 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/layout/fill_layout.h ('k') | ui/views/layout/grid_layout.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/layout/fill_layout.cc
diff --git a/ui/views/layout/fill_layout.cc b/ui/views/layout/fill_layout.cc
deleted file mode 100644
index 21375461210b0d54256f975553c703ed2097021c..0000000000000000000000000000000000000000
--- a/ui/views/layout/fill_layout.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011 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 "ui/views/layout/fill_layout.h"
-
-#include "base/logging.h"
-
-namespace views {
-
-FillLayout::FillLayout() {}
-
-FillLayout::~FillLayout() {}
-
-void FillLayout::Layout(View* host) {
- if (!host->has_children())
- return;
-
- View* frame_view = host->child_at(0);
- frame_view->SetBoundsRect(host->GetContentsBounds());
-}
-
-gfx::Size FillLayout::GetPreferredSize(const View* host) const {
- if (!host->has_children())
- return gfx::Size();
- DCHECK_EQ(1, host->child_count());
- gfx::Rect rect(host->child_at(0)->GetPreferredSize());
- rect.Inset(-host->GetInsets());
- return rect.size();
-}
-
-int FillLayout::GetPreferredHeightForWidth(const View* host, int width) const {
- if (!host->has_children())
- return 0;
- DCHECK_EQ(1, host->child_count());
- const gfx::Insets insets = host->GetInsets();
- return host->child_at(0)->GetHeightForWidth(width - insets.width()) +
- insets.height();
-}
-
-} // namespace views
« no previous file with comments | « ui/views/layout/fill_layout.h ('k') | ui/views/layout/grid_layout.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698