| Index: chrome/browser/views/options/options_page_view.cc
|
| diff --git a/chrome/browser/views/options/options_page_view.cc b/chrome/browser/views/options/options_page_view.cc
|
| index 61906217cbdbdb1bc9680ded62b553cc1f7014b5..6e7747ba210ac9c623f593a0ed3b922a45c9385a 100644
|
| --- a/chrome/browser/views/options/options_page_view.cc
|
| +++ b/chrome/browser/views/options/options_page_view.cc
|
| @@ -14,30 +14,13 @@
|
| // OptionsPageView
|
|
|
| OptionsPageView::OptionsPageView(Profile* profile)
|
| - : profile_(profile),
|
| + : OptionsPageBase(profile),
|
| initialized_(false) {
|
| }
|
|
|
| OptionsPageView::~OptionsPageView() {
|
| }
|
|
|
| -void OptionsPageView::UserMetricsRecordAction(const wchar_t* action,
|
| - PrefService* prefs) {
|
| - UserMetrics::RecordComputedAction(action, profile());
|
| - if (prefs)
|
| - prefs->ScheduleSavePersistentPrefs();
|
| -}
|
| -
|
| -///////////////////////////////////////////////////////////////////////////////
|
| -// OptionsPageView, NotificationObserver implementation:
|
| -
|
| -void OptionsPageView::Observe(NotificationType type,
|
| - const NotificationSource& source,
|
| - const NotificationDetails& details) {
|
| - if (type == NotificationType::PREF_CHANGED)
|
| - NotifyPrefChanged(Details<std::wstring>(details).ptr());
|
| -}
|
| -
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // OptionsPageView, views::View overrides:
|
|
|
|
|