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

Side by Side Diff: chrome/browser/geolocation/geolocation_infobar_delegate_android.cc

Issue 11785030: GeolocationConfirmInfoBarDelegate* -> GeolocationInfoBarDelegate*, for consistency with other infob… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 "chrome/browser/geolocation/geolocation_confirm_infobar_delegate_androi d.h" 5 #include "chrome/browser/geolocation/geolocation_infobar_delegate_android.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/android/google_location_settings_helper.h" 8 #include "chrome/browser/android/google_location_settings_helper.h"
9 #include "grit/generated_resources.h" 9 #include "grit/generated_resources.h"
10 #include "grit/locale_settings.h" 10 #include "grit/locale_settings.h"
11 #include "grit/theme_resources.h" 11 #include "grit/theme_resources.h"
12 #include "ui/base/l10n/l10n_util.h" 12 #include "ui/base/l10n/l10n_util.h"
13 13
14 GeolocationConfirmInfoBarDelegateAndroid:: 14 GeolocationInfoBarDelegateAndroid::GeolocationInfoBarDelegateAndroid(
15 GeolocationConfirmInfoBarDelegateAndroid(
16 InfoBarService* infobar_service, 15 InfoBarService* infobar_service,
17 GeolocationInfoBarQueueController* controller, 16 GeolocationInfoBarQueueController* controller,
18 const GeolocationPermissionRequestID& id, 17 const GeolocationPermissionRequestID& id,
19 const GURL& requesting_frame_url, 18 const GURL& requesting_frame_url,
20 const std::string& display_languages) 19 const std::string& display_languages)
21 : GeolocationConfirmInfoBarDelegate(infobar_service, controller, id, 20 : GeolocationInfoBarDelegate(infobar_service, controller, id,
22 requesting_frame_url, 21 requesting_frame_url, display_languages),
23 display_languages),
24 google_location_settings_helper_( 22 google_location_settings_helper_(
25 GoogleLocationSettingsHelper::Create()) { 23 GoogleLocationSettingsHelper::Create()) {
26 } 24 }
27 25
28 GeolocationConfirmInfoBarDelegateAndroid:: 26 GeolocationInfoBarDelegateAndroid::~GeolocationInfoBarDelegateAndroid() {
29 ~GeolocationConfirmInfoBarDelegateAndroid() {
30 } 27 }
31 28
32 bool GeolocationConfirmInfoBarDelegateAndroid::Accept() { 29 bool GeolocationInfoBarDelegateAndroid::Accept() {
33 // Accept button text could be either 'Allow' or 'Google Location Settings'. 30 // Accept button text could be either 'Allow' or 'Google Location Settings'.
34 // If 'Allow' we follow the regular flow. 31 // If 'Allow' we follow the regular flow.
35 if (google_location_settings_helper_->IsGoogleAppsLocationSettingEnabled()) 32 if (google_location_settings_helper_->IsGoogleAppsLocationSettingEnabled())
36 return GeolocationConfirmInfoBarDelegate::Accept(); 33 return GeolocationInfoBarDelegate::Accept();
37 34
38 // If 'Google Location Settings', we need to open the system Google Location 35 // If 'Google Location Settings', we need to open the system Google Location
39 // Settings activity. 36 // Settings activity.
40 google_location_settings_helper_->ShowGoogleLocationSettings(); 37 google_location_settings_helper_->ShowGoogleLocationSettings();
41 SetPermission(false, false); 38 SetPermission(false, false);
42 return true; 39 return true;
43 } 40 }
44 41
45 string16 GeolocationConfirmInfoBarDelegateAndroid::GetButtonLabel( 42 string16 GeolocationInfoBarDelegateAndroid::GetButtonLabel(
46 InfoBarButton button) const { 43 InfoBarButton button) const {
47 if (button == BUTTON_OK) { 44 if (button == BUTTON_OK) {
48 return UTF8ToUTF16( 45 return UTF8ToUTF16(
49 google_location_settings_helper_->GetAcceptButtonLabel()); 46 google_location_settings_helper_->GetAcceptButtonLabel());
50 } 47 }
51 return l10n_util::GetStringUTF16(IDS_GEOLOCATION_DENY_BUTTON); 48 return l10n_util::GetStringUTF16(IDS_GEOLOCATION_DENY_BUTTON);
52 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698