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

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

Issue 10823149: Remove WebAuthFlowWindow and its implementation on all platforms. We don't need it anymore since we… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 WebAuthFlowWindow::~WebAuthFlowWindow() {
13 }
14
15 WebAuthFlowWindow::WebAuthFlowWindow(
16 Delegate* delegate,
17 BrowserContext* browser_context,
18 WebContents* contents)
19 : delegate_(delegate),
20 browser_context_(browser_context),
21 contents_(contents) {
22 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/extensions/web_auth_flow_window.h ('k') | chrome/browser/ui/gtk/extensions/web_auth_flow_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698