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

Unified Diff: chrome/browser/android/search_geolocation_disclosure_infobar_delegate.cc

Issue 2475213002: Update the Google Search geolocation disclosure to make it more obvious. (Closed)
Patch Set: Feedback Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/search_geolocation_disclosure_infobar_delegate.cc
diff --git a/chrome/browser/android/search_geolocation_disclosure_infobar_delegate.cc b/chrome/browser/android/search_geolocation_disclosure_infobar_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..34e0f2a6587a26db383e48bdbe66918c3f389ae2
--- /dev/null
+++ b/chrome/browser/android/search_geolocation_disclosure_infobar_delegate.cc
@@ -0,0 +1,51 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/android/search_geolocation_disclosure_infobar_delegate.h"
+
+#include "base/memory/ptr_util.h"
+#include "chrome/browser/android/android_theme_resources.h"
+#include "chrome/browser/infobars/infobar_service.h"
+#include "chrome/browser/ui/android/infobars/search_geolocation_disclosure_infobar.h"
+#include "chrome/grit/generated_resources.h"
+#include "content/public/browser/web_contents.h"
+#include "ui/base/l10n/l10n_util.h"
+
+SearchGeolocationDisclosureInfoBarDelegate::
+ ~SearchGeolocationDisclosureInfoBarDelegate() {}
+
+// static
+void SearchGeolocationDisclosureInfoBarDelegate::Create(
+ content::WebContents* web_contents) {
+ InfoBarService* infobar_service =
+ InfoBarService::FromWebContents(web_contents);
+ // Add the new delegate.
+ infobar_service->AddInfoBar(
+ base::MakeUnique<SearchGeolocationDisclosureInfoBar>(
+ base::WrapUnique(new SearchGeolocationDisclosureInfoBarDelegate())));
+}
+
+base::string16 SearchGeolocationDisclosureInfoBarDelegate::GetMessageText()
+ const {
+ return l10n_util::GetStringUTF16(
+ IDS_SEARCH_GEOLOCATION_DISCLOSURE_INFOBAR_TEXT);
+};
+
+SearchGeolocationDisclosureInfoBarDelegate::
+ SearchGeolocationDisclosureInfoBarDelegate()
+ : infobars::InfoBarDelegate() {}
+
+infobars::InfoBarDelegate::Type
+SearchGeolocationDisclosureInfoBarDelegate::GetInfoBarType() const {
+ return PAGE_ACTION_TYPE;
+}
+
+infobars::InfoBarDelegate::InfoBarIdentifier
+SearchGeolocationDisclosureInfoBarDelegate::GetIdentifier() const {
+ return SEARCH_GEOLOCATION_DISCLOSURE_INFOBAR_DELEGATE;
+}
+
+int SearchGeolocationDisclosureInfoBarDelegate::GetIconId() const {
+ return IDR_ANDROID_INFOBAR_GEOLOCATION;
+}

Powered by Google App Engine
This is Rietveld 408576698