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

Unified Diff: ui/app_list/page_switcher.cc

Issue 10388032: Move app list from ash to ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: fix nits in #3 Created 8 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: ui/app_list/page_switcher.cc
===================================================================
--- ui/app_list/page_switcher.cc (revision 0)
+++ ui/app_list/page_switcher.cc (working copy)
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ash/app_list/page_switcher.h"
+#include "ui/app_list/page_switcher.h"
-#include "ash/app_list/pagination_model.h"
#include "third_party/skia/include/core/SkPath.h"
+#include "ui/app_list/pagination_model.h"
#include "ui/base/animation/throb_animation.h"
#include "ui/gfx/canvas.h"
#include "ui/views/controls/button/custom_button.h"
@@ -30,7 +30,7 @@
class PageSwitcherButton : public views::CustomButton {
public:
- PageSwitcherButton(views::ButtonListener* listener)
+ explicit PageSwitcherButton(views::ButtonListener* listener)
: views::CustomButton(listener),
selected_(false) {
}
@@ -97,7 +97,7 @@
} // namespace
-namespace ash {
+namespace app_list {
PageSwitcher::PageSwitcher(PaginationModel* model)
: model_(model),
@@ -155,4 +155,4 @@
GetButtonByIndex(buttons_, new_selected)->SetSelected(true);
}
-} // namespace ash
+} // namespace app_list

Powered by Google App Engine
This is Rietveld 408576698