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 libtestshell target to | |
9 // compile. They will be removed once real implementations are | |
10 // written/upstreamed, or once other code is refactored to eliminate the | |
11 // need for them. | |
12 | |
13 // static | |
14 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { | |
15 return NULL; | |
16 } | |
17 | |
18 // static | |
19 AutofillExternalDelegate* AutofillExternalDelegate::Create( | |
20 TabContents* tab_contents, | |
21 AutofillManager* manager) { | |
22 return NULL; | |
23 } | |
OLD | NEW |