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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.h

Issue 2690113011: cros: Remove unused inline_login_handler_chromeos.h/cc files. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_INLINE_LOGIN_HANDLER_CHROMEOS_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_INLINE_LOGIN_HANDLER_CHROMEOS_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "chrome/browser/ui/webui/signin/inline_login_handler.h"
12
13 namespace chromeos {
14
15 class OAuth2TokenFetcher;
16
17 // Implementation for the inline login WebUI handler on ChromeOS.
18 class InlineLoginHandlerChromeOS : public ::InlineLoginHandler {
19 public:
20 InlineLoginHandlerChromeOS();
21 ~InlineLoginHandlerChromeOS() override;
22
23 private:
24 class InlineLoginUIOAuth2Delegate;
25
26 // InlineLoginHandler overrides:
27 void CompleteLogin(const base::ListValue* args) override;
28
29 std::unique_ptr<InlineLoginUIOAuth2Delegate> oauth2_delegate_;
30 std::unique_ptr<chromeos::OAuth2TokenFetcher> oauth2_token_fetcher_;
31
32 DISALLOW_COPY_AND_ASSIGN(InlineLoginHandlerChromeOS);
33 };
34
35 } // namespace chromeos
36
37 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_INLINE_LOGIN_HANDLER_CHROMEOS_ H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698