Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: chrome/android/testshell/testshell_stubs.cc

Issue 11186010: Update geolocation infobar to handle Android system settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/autofill/autofill_external_delegate.h" 8 #include "chrome/browser/autofill/autofill_external_delegate.h"
8 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h"
9 9
10 // This file contains temporary stubs to allow the libtestshell target to 10 // This file contains temporary stubs to allow the libtestshell target to
11 // compile. They will be removed once real implementations are 11 // compile. They will be removed once real implementations are
12 // written/upstreamed, or once other code is refactored to eliminate the 12 // written/upstreamed, or once other code is refactored to eliminate the
13 // need for them. 13 // need for them.
14 14
15 // static 15 // static
16 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { 16 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) {
17 return NULL; 17 return NULL;
18 } 18 }
19 19
20 // static 20 // static
21 void AutofillExternalDelegate::CreateForWebContentsAndManager( 21 void AutofillExternalDelegate::CreateForWebContentsAndManager(
22 content::WebContents* web_contents, 22 content::WebContents* web_contents,
23 AutofillManager* autofill_manager) { 23 AutofillManager* autofill_manager) {
24 } 24 }
25 25
26 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { 26 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) {
27 NOTIMPLEMENTED(); 27 NOTIMPLEMENTED();
28 return NULL; 28 return NULL;
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698