1234567891011121314151617181920212223 |
- From: Joachim Bauch <bauch@struktur.de>
- Date: Tue, 9 Dec 2014 17:19:41 +0100
- Subject: browser-ui: disable warning about missing API keys
- We do not want to use the services anyway ;)
- ---
- chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc | 1 +
- 1 file changed, 1 insertion(+)
- diff --git a/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc b/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc
- --- a/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc
- +++ b/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc
- @@ -14,6 +14,7 @@
-
- // static
- void GoogleApiKeysInfoBarDelegate::Create(InfoBarService* infobar_service) {
- + return;
- infobar_service->AddInfoBar(infobar_service->CreateConfirmInfoBar(
- std::unique_ptr<ConfirmInfoBarDelegate>(
- new GoogleApiKeysInfoBarDelegate())));
- --
- 2.11.0
|