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

Side by Side Diff: views/examples/single_split_view_example.cc

Issue 6382009: views: Move grid_layout files into layout directory. Final Part. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/examples/message_box_example.h ('k') | views/examples/tabbed_pane_example.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "views/examples/single_split_view_example.h" 5 #include "views/examples/single_split_view_example.h"
6 6
7 #include "views/grid_layout.h" 7 #include "views/layout/grid_layout.h"
8 8
9 namespace examples { 9 namespace examples {
10 10
11 SingleSplitViewExample::SingleSplitViewExample(ExamplesMain* main) 11 SingleSplitViewExample::SingleSplitViewExample(ExamplesMain* main)
12 : ExampleBase(main) { 12 : ExampleBase(main) {
13 } 13 }
14 14
15 SingleSplitViewExample::~SingleSplitViewExample() { 15 SingleSplitViewExample::~SingleSplitViewExample() {
16 } 16 }
17 17
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 gfx::Size SingleSplitViewExample::SplittedView::GetMinimumSize() { 60 gfx::Size SingleSplitViewExample::SplittedView::GetMinimumSize() {
61 return gfx::Size(10, 10); 61 return gfx::Size(10, 10);
62 } 62 }
63 63
64 void SingleSplitViewExample::SplittedView::Layout() { 64 void SingleSplitViewExample::SplittedView::Layout() {
65 SizeToPreferredSize(); 65 SizeToPreferredSize();
66 } 66 }
67 67
68 } // namespace examples 68 } // namespace examples
OLDNEW
« no previous file with comments | « views/examples/message_box_example.h ('k') | views/examples/tabbed_pane_example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698