summaryrefslogtreecommitdiffstats
path: root/views/examples
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 00:46:38 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 00:46:38 +0000
commitb232f5b8282e981a95e0363ad856b700475c9272 (patch)
tree2129dd31688c8e182ecc43a600fc8f4dade92263 /views/examples
parentb1ce29b16fb9782d53dcae3fb523996b337e5805 (diff)
downloadchromium_src-b232f5b8282e981a95e0363ad856b700475c9272.zip
chromium_src-b232f5b8282e981a95e0363ad856b700475c9272.tar.gz
chromium_src-b232f5b8282e981a95e0363ad856b700475c9272.tar.bz2
views: Move fill_layout.[cc,h] into layout directory.
The other layout files under views directory will be moved later. BUG=None TEST=trybots Review URL: http://codereview.chromium.org/6360014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/examples')
-rw-r--r--views/examples/button_example.h5
-rw-r--r--views/examples/combobox_example.h2
-rw-r--r--views/examples/menu_example.h4
-rw-r--r--views/examples/table_example.h4
-rw-r--r--views/examples/throbber_example.cc4
5 files changed, 9 insertions, 10 deletions
diff --git a/views/examples/button_example.h b/views/examples/button_example.h
index ca66508..9a2e2a2 100644
--- a/views/examples/button_example.h
+++ b/views/examples/button_example.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// 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.
@@ -9,7 +9,7 @@
#include "base/string_util.h"
#include "views/controls/button/text_button.h"
#include "views/examples/example_base.h"
-#include "views/fill_layout.h"
+#include "views/layout/fill_layout.h"
#include "views/view.h"
namespace examples {
@@ -50,4 +50,3 @@ class ButtonExample : public ExampleBase, public views::ButtonListener {
} // namespace examples
#endif // VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_
-
diff --git a/views/examples/combobox_example.h b/views/examples/combobox_example.h
index 127c507..6bac840 100644
--- a/views/examples/combobox_example.h
+++ b/views/examples/combobox_example.h
@@ -9,7 +9,7 @@
#include "base/compiler_specific.h"
#include "views/controls/combobox/combobox.h"
#include "views/examples/example_base.h"
-#include "views/fill_layout.h"
+#include "views/layout/fill_layout.h"
namespace examples {
diff --git a/views/examples/menu_example.h b/views/examples/menu_example.h
index 680e2bb..8a6b749 100644
--- a/views/examples/menu_example.h
+++ b/views/examples/menu_example.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// 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.
@@ -15,7 +15,7 @@
#include "views/controls/menu/view_menu_delegate.h"
#include "views/controls/button/text_button.h"
#include "views/examples/example_base.h"
-#include "views/fill_layout.h"
+#include "views/layout/fill_layout.h"
namespace examples {
diff --git a/views/examples/table_example.h b/views/examples/table_example.h
index fdce299..a9e6ebc 100644
--- a/views/examples/table_example.h
+++ b/views/examples/table_example.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// 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.
@@ -14,7 +14,7 @@
#include "views/controls/table/table_view.h"
#include "views/controls/table/table_view_observer.h"
#include "views/examples/example_base.h"
-#include "views/fill_layout.h"
+#include "views/layout/fill_layout.h"
using ui::TableModel;
using ui::TableModelObserver; // TODO(beng): remove these
diff --git a/views/examples/throbber_example.cc b/views/examples/throbber_example.cc
index d03a9d9..9def3ce 100644
--- a/views/examples/throbber_example.cc
+++ b/views/examples/throbber_example.cc
@@ -1,11 +1,11 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// 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 "views/examples/throbber_example.h"
#include "views/controls/throbber.h"
-#include "views/fill_layout.h"
+#include "views/layout/fill_layout.h"
#include "views/view.h"
namespace {