summaryrefslogtreecommitdiffstats
path: root/chrome/android
diff options
context:
space:
mode:
authornileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 01:24:28 +0000
committernileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 01:24:28 +0000
commit7e30f6468bd77634a4397e59e9a4e04bda6f7129 (patch)
treee0122b43c8791399a00bfcd715e77f71a4ae3c95 /chrome/android
parentad8f45634589ccfb80f1f1d4cf0965c739014a71 (diff)
downloadchromium_src-7e30f6468bd77634a4397e59e9a4e04bda6f7129.zip
chromium_src-7e30f6468bd77634a4397e59e9a4e04bda6f7129.tar.gz
chromium_src-7e30f6468bd77634a4397e59e9a4e04bda6f7129.tar.bz2
Include infobar stubs for unit_tests and testshell.
Also add a stub for webview. BUG=137571 Review URL: https://chromiumcodereview.appspot.com/11087017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/android')
-rw-r--r--chrome/android/testshell/testshell_stubs.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/android/testshell/testshell_stubs.cc b/chrome/android/testshell/testshell_stubs.cc
index 717df43..948a71f 100644
--- a/chrome/android/testshell/testshell_stubs.cc
+++ b/chrome/android/testshell/testshell_stubs.cc
@@ -2,8 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/logging.h"
#include "chrome/browser/android/tab_android.h"
#include "chrome/browser/autofill/autofill_external_delegate.h"
+#include "chrome/browser/api/infobars/confirm_infobar_delegate.h"
// This file contains temporary stubs to allow the libtestshell target to
// compile. They will be removed once real implementations are
@@ -21,3 +23,8 @@ AutofillExternalDelegate* AutofillExternalDelegate::Create(
AutofillManager* manager) {
return NULL;
}
+
+InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) {
+ NOTIMPLEMENTED();
+ return NULL;
+}