| OLD | NEW |
| 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/chromeos/extensions/echo_private_api.h" | 5 #include "chrome/browser/chromeos/extensions/echo_private_api.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 11 #include "base/location.h" | 11 #include "base/location.h" |
| 12 #include "base/prefs/pref_registry_simple.h" | 12 #include "base/prefs/pref_registry_simple.h" |
| 13 #include "base/prefs/pref_service.h" | 13 #include "base/prefs/pref_service.h" |
| 14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
| 19 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" | 19 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" |
| 20 #include "chrome/browser/chromeos/settings/cros_settings.h" | 20 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 21 #include "chrome/browser/chromeos/system/statistics_provider.h" | |
| 22 #include "chrome/browser/chromeos/ui/echo_dialog_view.h" | 21 #include "chrome/browser/chromeos/ui/echo_dialog_view.h" |
| 23 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 22 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 24 #include "chrome/browser/ui/browser.h" | 23 #include "chrome/browser/ui/browser.h" |
| 25 #include "chrome/browser/ui/browser_window.h" | 24 #include "chrome/browser/ui/browser_window.h" |
| 26 #include "chrome/common/extensions/api/echo_private.h" | 25 #include "chrome/common/extensions/api/echo_private.h" |
| 27 #include "chrome/common/extensions/extension.h" | 26 #include "chrome/common/extensions/extension.h" |
| 28 #include "chrome/common/pref_names.h" | 27 #include "chrome/common/pref_names.h" |
| 28 #include "chromeos/system/statistics_provider.h" |
| 29 #include "content/public/browser/browser_thread.h" | 29 #include "content/public/browser/browser_thread.h" |
| 30 | 30 |
| 31 namespace echo_api = extensions::api::echo_private; | 31 namespace echo_api = extensions::api::echo_private; |
| 32 | 32 |
| 33 using content::BrowserThread; | 33 using content::BrowserThread; |
| 34 | 34 |
| 35 namespace { | 35 namespace { |
| 36 | 36 |
| 37 // URL of "More info" link shown in echo dialog in GetUserConsent function. | 37 // URL of "More info" link shown in echo dialog in GetUserConsent function. |
| 38 const char kMoreInfoLink[] = | 38 const char kMoreInfoLink[] = |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 void EchoPrivateGetUserConsentFunction::Finalize(bool consent) { | 306 void EchoPrivateGetUserConsentFunction::Finalize(bool consent) { |
| 307 // Consent should not be true if offers redeeming is disabled. | 307 // Consent should not be true if offers redeeming is disabled. |
| 308 CHECK(redeem_offers_allowed_ || !consent); | 308 CHECK(redeem_offers_allowed_ || !consent); |
| 309 results_ = echo_api::GetUserConsent::Results::Create(consent); | 309 results_ = echo_api::GetUserConsent::Results::Create(consent); |
| 310 SendResponse(true); | 310 SendResponse(true); |
| 311 | 311 |
| 312 // Release the reference added in |OnRedeemOffersAllowedChecked|, before | 312 // Release the reference added in |OnRedeemOffersAllowedChecked|, before |
| 313 // showing the dialog. | 313 // showing the dialog. |
| 314 Release(); | 314 Release(); |
| 315 } | 315 } |
| OLD | NEW |