
* Updated patches for v79 Remaining issue: * blank tabs when running on x86 emulators Waiting on upstream to fix that. The other upstream storage bug (https://bugs.chromium.org/p/chromium/issues/detail?id=1033655) is fixed in this version.
23 lines
864 B
Diff
23 lines
864 B
Diff
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.17.1
|
|
|