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

Issue 506663003: Consolidates accessing and setting the UMA pref to be within metrics code (Closed)

Created:
6 years, 4 months ago by gayane -on leave until 09-2017
Modified:
6 years, 3 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Consolidates accessing and setting the UMA pref to be within metrics code MetricsReportingEnabled checkbox changed code refactored for not-chromeos: -prefs removed from HTML -Handler and callback functions added to core_options_handler -Major refactoring in metrics_reporting_state -Simple histogram added in metrics_reporting_state without distinguishing the source of the change -browser_options_handler changed to handle new way of forcing company policies of disabling the checkbox BUG=401233 NOPRESUBMIT=true R=asvitkine@chromium.org Committed: https://chromium.googlesource.com/chromium/src/+/9f044063e9d771aae5995b6bb9894480e8c292e4

Patch Set 1 #

Total comments: 16

Patch Set 2 : access to prefs moved from browser_options_handle to metrics_reposting_state #

Total comments: 22

Patch Set 3 : Minor changes #

Total comments: 16

Patch Set 4 : more comments. using accesor class. #

Total comments: 26

Patch Set 5 : MetricsReporting handling moved to browser_options_handler. JS callback is not called if the… #

Total comments: 22

Patch Set 6 : Return updated state instead of success identifier + minor changes #

Total comments: 26

Patch Set 7 : Always pass all params to setMetricsReportingCheckboxState, minor changes #

Total comments: 14

Patch Set 8 : minor changes and fixes #

Total comments: 12

Patch Set 9 : fixes, more comments #

Total comments: 6

Patch Set 10 : forward declaration. minor fixes #

Patch Set 11 : fix and rollback unnecessary changes #

Total comments: 12

Patch Set 12 : typedef for callback type #

Total comments: 9

Patch Set 13 : callback arguments as const refs instead of const #

Patch Set 14 : inline cllback definition #

Patch Set 15 : indent fix #

Patch Set 16 : sync #

Patch Set 17 : checkbox setup only for official build #

Patch Set 18 : ChromeOS and Android support in IsMetricsReportingUserChangable #

Total comments: 8

Patch Set 19 : undo changes for IsMetricsReportingUserChangable. Checks for andrioid added #

Total comments: 1

Patch Set 20 : android check removed #

Unified diffs Side-by-side diffs Delta from patch set Stats (+220 lines, -63 lines) Patch
M chrome/browser/chromeos/login/wizard_controller.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/wizard_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +16 lines, -11 lines 0 comments Download
M chrome/browser/chromeos/settings/device_settings_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/metrics/chrome_metrics_service_accessor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/metrics/metrics_reporting_state.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +17 lines, -7 lines 0 comments Download
M chrome/browser/metrics/metrics_reporting_state.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +80 lines, -14 lines 0 comments Download
M chrome/browser/resources/options/browser_options.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -4 lines 0 comments Download
M chrome/browser/resources/options/browser_options.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +15 lines, -3 lines 0 comments Download
M chrome/browser/ui/views/session_crashed_bubble_view.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -5 lines 0 comments Download
M chrome/browser/ui/webui/options/browser_options_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +14 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/options/browser_options_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 5 chunks +42 lines, -3 lines 0 comments Download
M chrome/browser/ui/webui/options/core_options_handler.cc View 1 2 3 4 5 6 7 8 3 chunks +0 lines, -15 lines 0 comments Download
M components/metrics/metrics_state_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +4 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 2 chunks +16 lines, -0 lines 0 comments Download

Messages

Total messages: 59 (13 generated)
gayane -on leave until 09-2017
gayane@chromium.org changed reviewers: + asvitkine@chromium.org
6 years, 3 months ago (2014-08-26 16:49:38 UTC) #1
gayane -on leave until 09-2017
I tried to run trybots before submitting for a review. Some are failing but it ...
6 years, 3 months ago (2014-08-26 16:50:52 UTC) #2
Alexei Svitkine (slow)
I think this is on the right track, though I have some initial comments for ...
6 years, 3 months ago (2014-08-28 14:46:49 UTC) #3
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/1/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/1/chrome/browser/chromeos/login/wizard_controller.cc#newcode648 chrome/browser/chromeos/login/wizard_controller.cc:648: &WizardController::InitiateMetricsReportingChangeCallback, On 2014/08/28 14:46:48, Alexei Svitkine wrote: > Nit: ...
6 years, 3 months ago (2014-09-03 20:20:08 UTC) #4
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/20001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/20001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (success) { Nit: Prefer an early return. https://codereview.chromium.org/506663003/diff/20001/chrome/browser/chromeos/settings/device_settings_provider.cc ...
6 years, 3 months ago (2014-09-04 13:58:04 UTC) #5
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/20001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/20001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (success) { On 2014/09/04 13:58:03, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-04 18:35:47 UTC) #6
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/40001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/40001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (!success) { Nit: No need for {}'s for ...
6 years, 3 months ago (2014-09-04 18:45:26 UTC) #7
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/40001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/40001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (!success) { On 2014/09/04 18:45:25, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-04 21:30:13 UTC) #8
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/60001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/60001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (!success) return; Nit: Put return on the next ...
6 years, 3 months ago (2014-09-05 15:22:49 UTC) #9
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/60001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/60001/chrome/browser/chromeos/login/wizard_controller.cc#newcode630 chrome/browser/chromeos/login/wizard_controller.cc:630: if (!success) return; On 2014/09/05 15:22:48, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-05 18:30:21 UTC) #10
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/80001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/80001/chrome/browser/chromeos/login/wizard_controller.cc#newcode635 chrome/browser/chromeos/login/wizard_controller.cc:635: if (usage_statistics_reporting_) { This seems to be a subtle ...
6 years, 3 months ago (2014-09-05 20:50:25 UTC) #11
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/80001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/80001/chrome/browser/chromeos/login/wizard_controller.cc#newcode635 chrome/browser/chromeos/login/wizard_controller.cc:635: if (usage_statistics_reporting_) { On 2014/09/05 20:50:24, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-08 18:32:47 UTC) #12
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/100001/chrome/browser/chromeos/login/wizard_controller.h File chrome/browser/chromeos/login/wizard_controller.h (right): https://codereview.chromium.org/506663003/diff/100001/chrome/browser/chromeos/login/wizard_controller.h#newcode218 chrome/browser/chromeos/login/wizard_controller.h:218: // Callback function after setting MetricsReporting Nit: Full sentences ...
6 years, 3 months ago (2014-09-09 15:27:16 UTC) #13
Alexei Svitkine (slow)
I also suggest expanding the CL description to have a short paragraph about the motivation ...
6 years, 3 months ago (2014-09-09 15:28:15 UTC) #14
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/100001/chrome/browser/chromeos/login/wizard_controller.h File chrome/browser/chromeos/login/wizard_controller.h (right): https://codereview.chromium.org/506663003/diff/100001/chrome/browser/chromeos/login/wizard_controller.h#newcode218 chrome/browser/chromeos/login/wizard_controller.h:218: // Callback function after setting MetricsReporting On 2014/09/09 15:27:15, ...
6 years, 3 months ago (2014-09-09 19:40:52 UTC) #15
Alexei Svitkine (slow)
Almost there, a few more comments and then we can add owners to the reviewers ...
6 years, 3 months ago (2014-09-09 20:30:05 UTC) #16
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/120001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/120001/chrome/browser/metrics/metrics_reporting_state.cc#newcode46 chrome/browser/metrics/metrics_reporting_state.cc:46: bool updated_pref) { On 2014/09/09 20:30:04, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-10 16:58:28 UTC) #17
Alexei Svitkine (slow)
Haven't taken a look yet, but one tip for future: It's generally better to upload ...
6 years, 3 months ago (2014-09-10 17:47:45 UTC) #18
Alexei Svitkine (slow)
Almost there, just a few last comments. https://codereview.chromium.org/506663003/diff/140001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/140001/chrome/browser/metrics/metrics_reporting_state.cc#newcode45 chrome/browser/metrics/metrics_reporting_state.cc:45: void SetMetricsReporting(bool ...
6 years, 3 months ago (2014-09-11 15:33:43 UTC) #19
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/140001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/140001/chrome/browser/metrics/metrics_reporting_state.cc#newcode45 chrome/browser/metrics/metrics_reporting_state.cc:45: void SetMetricsReporting(bool enabled, On 2014/09/11 15:33:43, Alexei Svitkine wrote: ...
6 years, 3 months ago (2014-09-11 17:06:08 UTC) #20
Alexei Svitkine (slow)
LGTM % remaining comments. Once you've addressed them, you can add owners for review. (Let ...
6 years, 3 months ago (2014-09-11 17:17:51 UTC) #21
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/150001/chrome/browser/metrics/chrome_metrics_service_accessor.h File chrome/browser/metrics/chrome_metrics_service_accessor.h (right): https://codereview.chromium.org/506663003/diff/150001/chrome/browser/metrics/chrome_metrics_service_accessor.h#newcode14 chrome/browser/metrics/chrome_metrics_service_accessor.h:14: #include "chrome/browser/ui/webui/options/browser_options_handler.h" On 2014/09/11 17:17:51, Alexei Svitkine wrote: > ...
6 years, 3 months ago (2014-09-11 19:04:10 UTC) #22
gayane -on leave until 09-2017
stevenjb@chromium.org: Please review changes in chrome/browser/chromeos/ chrome/browser/resources/options/ chrome/browser/ui/webui/ sky@chromium.org: Please review changes in chrome/browser/ui/views/session_crashed_bubble_view.cc
6 years, 3 months ago (2014-09-11 19:17:12 UTC) #24
sky
chrome/browser/ui/views/session_crashed_bubble_view.cc LGTM
6 years, 3 months ago (2014-09-11 19:53:11 UTC) #25
stevenjb
https://codereview.chromium.org/506663003/diff/190001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/190001/chrome/browser/chromeos/login/wizard_controller.cc#newcode589 chrome/browser/chromeos/login/wizard_controller.cc:589: weak_factory_.GetWeakPtr()); No need for local, just inline this. https://codereview.chromium.org/506663003/diff/190001/chrome/browser/chromeos/login/wizard_controller.cc#newcode602 ...
6 years, 3 months ago (2014-09-11 20:31:44 UTC) #26
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/190001/components/metrics/metrics_state_manager.cc File components/metrics/metrics_state_manager.cc (right): https://codereview.chromium.org/506663003/diff/190001/components/metrics/metrics_state_manager.cc#newcode222 components/metrics/metrics_state_manager.cc:222: base::ThreadRestrictions::ScopedAllowIO allow_io; On 2014/09/11 20:31:44, stevenjb wrote: > We ...
6 years, 3 months ago (2014-09-11 20:39:43 UTC) #27
stevenjb
https://codereview.chromium.org/506663003/diff/190001/components/metrics/metrics_state_manager.cc File components/metrics/metrics_state_manager.cc (right): https://codereview.chromium.org/506663003/diff/190001/components/metrics/metrics_state_manager.cc#newcode222 components/metrics/metrics_state_manager.cc:222: base::ThreadRestrictions::ScopedAllowIO allow_io; On 2014/09/11 20:39:43, Alexei Svitkine wrote: > ...
6 years, 3 months ago (2014-09-11 20:47:19 UTC) #28
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/190001/chrome/browser/chromeos/login/wizard_controller.cc File chrome/browser/chromeos/login/wizard_controller.cc (right): https://codereview.chromium.org/506663003/diff/190001/chrome/browser/chromeos/login/wizard_controller.cc#newcode589 chrome/browser/chromeos/login/wizard_controller.cc:589: weak_factory_.GetWeakPtr()); On 2014/09/11 20:31:44, stevenjb wrote: > No need ...
6 years, 3 months ago (2014-09-12 17:44:51 UTC) #29
Alexei Svitkine (slow)
lgtm, couple more nits https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/metrics_reporting_state.h File chrome/browser/metrics/metrics_reporting_state.h (right): https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/metrics_reporting_state.h#newcode20 chrome/browser/metrics/metrics_reporting_state.h:20: const OnMetricsReportingCallbackType callback_fn); Nit: Pass ...
6 years, 3 months ago (2014-09-12 17:51:52 UTC) #30
stevenjb
lgtm w/nits https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/chrome_metrics_service_accessor.h File chrome/browser/metrics/chrome_metrics_service_accessor.h (right): https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/chrome_metrics_service_accessor.h#newcode58 chrome/browser/metrics/chrome_metrics_service_accessor.h:58: bool, const OnMetricsReportingCallbackType); nit: const& https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/metrics_reporting_state.h File ...
6 years, 3 months ago (2014-09-12 18:07:41 UTC) #31
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/chrome_metrics_service_accessor.h File chrome/browser/metrics/chrome_metrics_service_accessor.h (right): https://codereview.chromium.org/506663003/diff/210001/chrome/browser/metrics/chrome_metrics_service_accessor.h#newcode58 chrome/browser/metrics/chrome_metrics_service_accessor.h:58: bool, const OnMetricsReportingCallbackType); On 2014/09/12 18:07:41, stevenjb wrote: > ...
6 years, 3 months ago (2014-09-12 18:20:12 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/506663003/270001
6 years, 3 months ago (2014-09-12 18:50:07 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/506663003/290001
6 years, 3 months ago (2014-09-12 19:38:29 UTC) #36
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/10700)
6 years, 3 months ago (2014-09-12 20:01:26 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/506663003/310001
6 years, 3 months ago (2014-09-15 14:23:41 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/10962)
6 years, 3 months ago (2014-09-15 14:36:14 UTC) #42
gayane -on leave until 09-2017
I have made some changes in metrics_reporting_state to support Android and ChromeOS. Would you please ...
6 years, 3 months ago (2014-09-15 20:35:09 UTC) #43
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc#newcode105 chrome/browser/metrics/metrics_reporting_state.cc:105: #if defined(OS_ANDROID) Why is all of this needed? I ...
6 years, 3 months ago (2014-09-15 20:59:43 UTC) #44
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc#newcode105 chrome/browser/metrics/metrics_reporting_state.cc:105: #if defined(OS_ANDROID) So the thing is that initially the ...
6 years, 3 months ago (2014-09-15 21:09:17 UTC) #45
Alexei Svitkine (slow)
https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc#newcode62 chrome/browser/metrics/metrics_reporting_state.cc:62: #if !defined(OS_CHROMEOS) I would also expand this ifdef to ...
6 years, 3 months ago (2014-09-15 21:36:44 UTC) #46
gayane -on leave until 09-2017
https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc File chrome/browser/metrics/metrics_reporting_state.cc (right): https://codereview.chromium.org/506663003/diff/330001/chrome/browser/metrics/metrics_reporting_state.cc#newcode62 chrome/browser/metrics/metrics_reporting_state.cc:62: #if !defined(OS_CHROMEOS) On 2014/09/15 21:36:44, Alexei Svitkine wrote: > ...
6 years, 3 months ago (2014-09-16 17:28:53 UTC) #51
Alexei Svitkine (slow)
LGTM % comment https://codereview.chromium.org/506663003/diff/410001/chrome/browser/ui/webui/options/browser_options_handler.cc File chrome/browser/ui/webui/options/browser_options_handler.cc (right): https://codereview.chromium.org/506663003/diff/410001/chrome/browser/ui/webui/options/browser_options_handler.cc#newcode1897 chrome/browser/ui/webui/options/browser_options_handler.cc:1897: #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) ...
6 years, 3 months ago (2014-09-16 17:32:36 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/506663003/450001
6 years, 3 months ago (2014-09-16 17:59:18 UTC) #55
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/11321)
6 years, 3 months ago (2014-09-16 18:20:05 UTC) #57
commit-bot: I haz the power
Patchset 20 (id:??) landed as https://crrev.com/9f044063e9d771aae5995b6bb9894480e8c292e4 Cr-Commit-Position: refs/heads/master@{#295124}
6 years, 3 months ago (2014-09-16 19:28:48 UTC) #58
Alexei Svitkine (slow)
6 years, 3 months ago (2014-09-16 19:29:40 UTC) #59
Message was sent while issue was closed.
Committed patchset #20 (id:450001) manually as 9f04406.

Powered by Google App Engine
This is Rietveld 408576698