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

Side by Side Diff: chrome/browser/ui/extensions/web_auth_flow_window.cc

Issue 10178020: Start implementing an auth flow for platform apps to be able to do auth (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 #include "chrome/browser/ui/extensions/web_auth_flow_window.h"
6
7 #include "content/public/browser/browser_context.h"
8
9 using content::BrowserContext;
10 using content::WebContents;
11
12 // TODO(munjal): Remove this once we have mac/linux implementations.
13 #ifndef TOOLKIT_VIEWS
14 // static
15 WebAuthFlowWindow* WebAuthFlowWindow::Create(
16 Delegate* delegate,
17 BrowserContext* browser_context,
18 WebContents* contents) {
19 return NULL;
20 }
21 #endif
22
23 WebAuthFlowWindow::~WebAuthFlowWindow() {
24 }
25
26 WebAuthFlowWindow::WebAuthFlowWindow(
27 Delegate* delegate,
28 BrowserContext* browser_context,
29 WebContents* contents)
30 : delegate_(delegate),
31 browser_context_(browser_context),
32 contents_(contents) {
33 }
34
OLDNEW
« no previous file with comments | « chrome/browser/ui/extensions/web_auth_flow_window.h ('k') | chrome/browser/ui/views/extensions/web_auth_flow_window_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698