OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "chrome/browser/android/tab_android.h" | 6 #include "chrome/browser/android/tab_android.h" |
7 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" | 7 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
8 #include "chrome/browser/autofill/autofill_external_delegate.h" | |
John Knottenbelt
2012/10/24 12:49:02
nit: can this include be removed?
Ramya
2012/10/24 23:16:06
Done.
| |
8 | 9 |
9 // This file contains temporary stubs to allow the libtestshell target to | 10 // This file contains temporary stubs to allow the libtestshell target to |
10 // compile. They will be removed once real implementations are | 11 // compile. They will be removed once real implementations are |
11 // written/upstreamed, or once other code is refactored to eliminate the | 12 // written/upstreamed, or once other code is refactored to eliminate the |
12 // need for them. | 13 // need for them. |
13 | 14 |
14 // static | 15 // static |
15 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { | 16 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { |
16 return NULL; | 17 return NULL; |
17 } | 18 } |
18 | 19 |
19 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { | 20 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { |
20 NOTIMPLEMENTED(); | 21 NOTIMPLEMENTED(); |
21 return NULL; | 22 return NULL; |
22 } | 23 } |
OLD | NEW |