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 // 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 |
OLD | NEW |