Chromium Code Reviews| 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/android/tab_android.h" | |
| 6 #include "chrome/browser/autofill/autofill_external_delegate.h" | |
| 7 | |
| 8 // This file contains temporary stubs to allow the libwebview target to compile. | |
| 9 // They will be removed once real implementations are written/upstreamed, or | |
|
Jói
2012/08/07 13:49:47
For my enlightenment: Does this mean the previous
Torne
2012/08/07 13:58:09
There's currently no real implementation of TabAnd
joth
2012/08/07 17:19:57
Actually it turns out that http auth dialogs are c
| |
| 10 // once other code is refactored to eliminate the need for them. | |
| 11 | |
| 12 // static | |
| 13 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { | |
| 14 // We don't need to return a real TabAndroid object yet. | |
| 15 // Eventually, WebView will need its own TabAndroid implementation. | |
| 16 return NULL; | |
| 17 } | |
| 18 | |
| 19 // static | |
| 20 AutofillExternalDelegate* AutofillExternalDelegate::Create( | |
| 21 TabContents* tab_contents, | |
| 22 AutofillManager* manager) { | |
| 23 // We don't need to return a real AutofillExternalDelegate yet. | |
| 24 // Eventually, WebView will need an implementation (probably shared with | |
| 25 // Chrome). | |
| 26 return NULL; | |
| 27 } | |
| OLD | NEW |