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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/stats_options_handler.cc

Issue 2771233002: Remove the wrapper functions content::RecordAction et al (Closed)
Patch Set: Rebased Created 3 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
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/ui/webui/options/chromeos/stats_options_handler.h" 5 #include "chrome/browser/ui/webui/options/chromeos/stats_options_handler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/metrics/user_metrics.h"
9 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
10 #include "base/values.h" 11 #include "base/values.h"
11 #include "content/public/browser/user_metrics.h"
12 #include "content/public/browser/web_ui.h" 12 #include "content/public/browser/web_ui.h"
13 13
14 using base::UserMetricsAction; 14 using base::UserMetricsAction;
15 15
16 namespace chromeos { 16 namespace chromeos {
17 namespace options { 17 namespace options {
18 18
19 StatsOptionsHandler::StatsOptionsHandler() { 19 StatsOptionsHandler::StatsOptionsHandler() {
20 } 20 }
21 21
22 // OptionsPageUIHandler implementation. 22 // OptionsPageUIHandler implementation.
23 void StatsOptionsHandler::GetLocalizedValues( 23 void StatsOptionsHandler::GetLocalizedValues(
24 base::DictionaryValue* localized_strings) { 24 base::DictionaryValue* localized_strings) {
25 } 25 }
26 26
27 // WebUIMessageHandler implementation. 27 // WebUIMessageHandler implementation.
28 void StatsOptionsHandler::RegisterMessages() { 28 void StatsOptionsHandler::RegisterMessages() {
29 web_ui()->RegisterMessageCallback("metricsReportingCheckboxAction", 29 web_ui()->RegisterMessageCallback("metricsReportingCheckboxAction",
30 base::Bind(&StatsOptionsHandler::HandleMetricsReportingCheckbox, 30 base::Bind(&StatsOptionsHandler::HandleMetricsReportingCheckbox,
31 base::Unretained(this))); 31 base::Unretained(this)));
32 } 32 }
33 33
34 void StatsOptionsHandler::HandleMetricsReportingCheckbox( 34 void StatsOptionsHandler::HandleMetricsReportingCheckbox(
35 const base::ListValue* args) { 35 const base::ListValue* args) {
36 #if defined(GOOGLE_CHROME_BUILD) 36 #if defined(GOOGLE_CHROME_BUILD)
37 const std::string checked_str = base::UTF16ToUTF8(ExtractStringValue(args)); 37 const std::string checked_str = base::UTF16ToUTF8(ExtractStringValue(args));
38 const bool enabled = (checked_str == "true"); 38 const bool enabled = (checked_str == "true");
39 content::RecordAction( 39 base::RecordAction(
40 enabled ? 40 enabled ? UserMetricsAction("Options_MetricsReportingCheckbox_Enable")
41 UserMetricsAction("Options_MetricsReportingCheckbox_Enable") : 41 : UserMetricsAction("Options_MetricsReportingCheckbox_Disable"));
42 UserMetricsAction("Options_MetricsReportingCheckbox_Disable"));
43 #endif 42 #endif
44 } 43 }
45 44
46 } // namespace options 45 } // namespace options
47 } // namespace chromeos 46 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698