blob: d4388e74f3eec8c08179a9408976028fe2a76030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/dom_ui/shown_sections_handler.h"
#include "base/string_util.h"
#include "base/values.h"
#include "chrome/browser/profile.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
void ShownSectionsHandler::RegisterMessages() {
dom_ui_->RegisterMessageCallback("getShownSections",
NewCallback(this, &ShownSectionsHandler::HandleGetShownSections));
dom_ui_->RegisterMessageCallback("setShownSections",
NewCallback(this, &ShownSectionsHandler::HandleSetShownSections));
}
void ShownSectionsHandler::HandleGetShownSections(const Value* value) {
const int mode = dom_ui_->GetProfile()->GetPrefs()->
GetInteger(prefs::kNTPShownSections);
FundamentalValue mode_value(mode);
dom_ui_->CallJavascriptFunction(L"onShownSections", mode_value);
}
void ShownSectionsHandler::HandleSetShownSections(const Value* value) {
if (!value->IsType(Value::TYPE_LIST)) {
NOTREACHED();
return;
}
const ListValue* list = static_cast<const ListValue*>(value);
std::string mode_string;
if (list->GetSize() < 1) {
NOTREACHED() << "setShownSections called with too few arguments";
return;
}
bool r = list->GetString(0, &mode_string);
DCHECK(r) << "Missing value in setShownSections from the NTP Most Visited.";
dom_ui_->GetProfile()->GetPrefs()->SetInteger(
prefs::kNTPShownSections, StringToInt(mode_string));
}
// static
void ShownSectionsHandler::RegisterUserPrefs(PrefService* prefs) {
prefs->RegisterIntegerPref(prefs::kNTPShownSections,
THUMB | RECENT | TIPS | SYNC);
}
// static
void ShownSectionsHandler::MigrateUserPrefs(PrefService* prefs,
int old_pref_version,
int new_pref_version) {
if (old_pref_version < 1) {
int shown_sections = prefs->GetInteger(prefs::kNTPShownSections);
// TIPS was used in early builds of the NNTP but since it was removed before
// Chrome 3.0 we want to ensure that it is shown by default.
shown_sections |= TIPS | SYNC;
prefs->SetInteger(prefs::kNTPShownSections, shown_sections);
}
}
|