summaryrefslogtreecommitdiffstats
path: root/ui/app_list/signin_delegate_observer.h
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-29 08:45:25 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-29 08:45:25 +0000
commit11409f2ac727969d30faf891d759f4957cb85621 (patch)
treeebb575cdac061798bc68b39b0da073a7a9ea97a8 /ui/app_list/signin_delegate_observer.h
parentd9f1bc774a6433c96fd443089f526c715ef37c25 (diff)
downloadchromium_src-11409f2ac727969d30faf891d759f4957cb85621.zip
chromium_src-11409f2ac727969d30faf891d759f4957cb85621.tar.gz
chromium_src-11409f2ac727969d30faf891d759f4957cb85621.tar.bz2
Revert 179302
Breaks linking on app_list_unittest on Linux: symbol lookup error: libcontent.so: undefined symbol: _ZN15MallocExtension32GetBytesAllocatedOnCurrentThreadEv > [win] Add signin support for the app launcher. > > This relands r178795, with the navigation to the sign in screen deferred until > the app list is shown and sign in is needed. > > TBR=sky@chromium.org, atwilson@chromium.org, rogerta@chromium.org, xiyuan@chromium.org > BUG=159733 > > Review URL: https://codereview.chromium.org/12095027 TBR=benwells@chromium.org Review URL: https://codereview.chromium.org/12088037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179307 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/app_list/signin_delegate_observer.h')
-rw-r--r--ui/app_list/signin_delegate_observer.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/ui/app_list/signin_delegate_observer.h b/ui/app_list/signin_delegate_observer.h
deleted file mode 100644
index 47c49926..0000000
--- a/ui/app_list/signin_delegate_observer.h
+++ /dev/null
@@ -1,24 +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_SIGNIN_DELEGATE_OBSERVER_H_
-#define UI_APP_LIST_SIGNIN_DELEGATE_OBSERVER_H_
-
-#include "ui/app_list/app_list_export.h"
-
-namespace app_list {
-
-// Abstract interface to allow handling app list signin success.
-class APP_LIST_EXPORT SigninDelegateObserver {
- public:
- // Called by the SigninDelegate when signin has successfully completed.
- virtual void OnSigninSuccess() = 0;
-
- protected:
- virtual ~SigninDelegateObserver() {}
-};
-
-} // namespace app_list
-
-#endif // UI_APP_LIST_SIGNIN_DELEGATE_OBSERVER_H_