blob: edeb3ad731da6ba5daa0a2d6ede14605dfcc4186 (
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
66
67
68
69
70
71
72
73
74
75
|
// Copyright (c) 2011 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/extensions/extension_info_private_api_chromeos.h"
#include "base/values.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/chromeos/login/wizard_controller.h"
#include "chrome/browser/chromeos/system/statistics_provider.h"
using chromeos::CrosLibrary;
using chromeos::NetworkLibrary;
namespace {
// Name of machine statistic property with HWID.
const char kHardwareClass[] = "hardware_class";
// Key which corresponds to the HWID setting.
const char kPropertyHWID[] = "hwid";
// Key which corresponds to the home provider property.
const char kPropertyHomeProvider[] = "homeProvider";
// Key which corresponds to the initial_locale property.
const char kPropertyInitialLocale[] = "initialLocale";
} // namespace
GetChromeosInfoFunction::GetChromeosInfoFunction() {
}
GetChromeosInfoFunction::~GetChromeosInfoFunction() {
}
bool GetChromeosInfoFunction::RunImpl() {
ListValue* list = NULL;
EXTENSION_FUNCTION_VALIDATE(args_->GetList(0, &list));
scoped_ptr<DictionaryValue> result(new DictionaryValue());
for (size_t i = 0; i < list->GetSize(); ++i) {
std::string property_name;
EXTENSION_FUNCTION_VALIDATE(list->GetString(i, &property_name));
std::string value;
if (GetValue(property_name, &value))
result->Set(property_name, Value::CreateStringValue(value));
}
result_.reset(result.release());
SendResponse(true);
return true;
}
bool GetChromeosInfoFunction::GetValue(const std::string& property_name,
std::string* value) {
value->clear();
if (property_name == kPropertyHWID) {
chromeos::system::StatisticsProvider* provider =
chromeos::system::StatisticsProvider::GetInstance();
provider->GetMachineStatistic(kHardwareClass, value);
} else if (property_name == kPropertyHomeProvider) {
if (CrosLibrary::Get()->EnsureLoaded()) {
NetworkLibrary* netlib = CrosLibrary::Get()->GetNetworkLibrary();
(*value) = netlib->GetCellularHomeCarrierId();
} else {
LOG(ERROR) << "CrosLibrary can't be loaded.";
}
} else if (property_name == kPropertyInitialLocale) {
*value = chromeos::WizardController::GetInitialLocale();
} else {
LOG(ERROR) << "Unknown property request: " << property_name;
return false;
}
return true;
}
|