OLD | NEW |
| (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 } | |
OLD | NEW |