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

Unified Diff: ui/app_list/views/signin_view.h

Issue 309443002: Remove need to sign in to use the App Launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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/views/signin_view.h
diff --git a/ui/app_list/views/signin_view.h b/ui/app_list/views/signin_view.h
deleted file mode 100644
index b4bb98931cc0ab9b2831d6ac05b58848e619c8a5..0000000000000000000000000000000000000000
--- a/ui/app_list/views/signin_view.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef UI_APP_LIST_VIEWS_SIGNIN_VIEW_H_
-#define UI_APP_LIST_VIEWS_SIGNIN_VIEW_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "ui/views/controls/button/button.h"
-#include "ui/views/controls/link_listener.h"
-#include "ui/views/view.h"
-
-namespace app_list {
-
-class SigninDelegate;
-
-// The SigninView is shown in the app list when the user needs to sign in.
-class SigninView : public views::View,
- public views::ButtonListener,
- public views::LinkListener {
- public:
- SigninView(SigninDelegate* delegate, int width);
- virtual ~SigninView();
-
- private:
- // views::ButtonListener overrides:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) OVERRIDE;
-
- // views::LinkListener overrides:
- virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
-
- views::Link* learn_more_link_;
- views::Link* settings_link_;
-
- SigninDelegate* delegate_;
-
- DISALLOW_COPY_AND_ASSIGN(SigninView);
-};
-
-} // namespace app_list
-
-#endif // UI_APP_LIST_VIEWS_SIGNIN_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698