OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:chrome_state
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/chrome/installer/util/
fake_installation_state.h
22
FakeProductState
chrome_state
;
local
23
chrome_state
.set_version(version);
24
chrome_state
.set_multi_install(multi_install);
33
chrome_state
.SetUninstallProgram(setup_exe);
34
chrome_state
.AddUninstallSwitch(switches::kUninstall);
36
chrome_state
.AddUninstallSwitch(switches::kMultiInstall);
37
chrome_state
.AddUninstallSwitch(switches::kChrome);
40
chrome_state
);
product_unittest.cc
117
const installer::ProductState*
chrome_state
=
local
119
EXPECT_TRUE(
chrome_state
!= NULL);
120
if (
chrome_state
!= NULL) {
121
EXPECT_TRUE(
chrome_state
->version().Equals(current_version));
122
EXPECT_FALSE(
chrome_state
->is_msi());
134
chrome_state
=
136
EXPECT_TRUE(
chrome_state
!= NULL);
137
if (
chrome_state
!= NULL)
138
EXPECT_TRUE(
chrome_state
->is_msi());
installation_validator.cc
480
const ProductState*
chrome_state
= machine_state.GetProductState(
local
482
if (
chrome_state
!= NULL) {
547
if (
chrome_state
== NULL && cf_state == NULL && app_host_state == NULL) {
553
if (
chrome_state
!= NULL && !
chrome_state
->is_multi_install()) {
560
if (cf_state != NULL && app_host_state == NULL &&
chrome_state
== NULL &&
[
all
...]
installer_state.cc
147
const ProductState*
chrome_state
= machine_state.GetProductState(
local
151
if (!
chrome_state
) {
/external/chromium_org/chrome/installer/setup/
chrome_frame_quick_enable.cc
33
const ProductState*
chrome_state
=
local
36
if (
chrome_state
== NULL) {
39
} else if (!
chrome_state
->is_multi_install()) {
90
const ProductState*
chrome_state
=
local
93
DCHECK(
chrome_state
); // Checked in CheckQuickEnablePreconditions.
101
base::FilePath setup_path(
chrome_state
->GetSetupPath());
102
const Version& new_version =
chrome_state
->version();
114
const Version* opv =
chrome_state
->old_version();
121
*
chrome_state
);
128
chrome_state
->uninstall_command().GetProgram()
[
all
...]
chrome_frame_ready_mode.cc
46
const ProductState*
chrome_state
=
local
52
if (
chrome_state
== NULL) {
56
if (!
chrome_state
->is_multi_install()) {
75
*
chrome_state
);
99
AddUninstallShortcutWorkItems(opt_in_state,
chrome_state
->GetSetupPath(),
100
chrome_state
->version(), *chrome, item_list.get());
install_worker_unittest.cc
636
MockProductState
chrome_state
;
local
637
chrome_state
.set_version(new Version(*current_version_));
638
chrome_state
.set_multi_install(false);
639
chrome_state
.set_usagestats(1);
642
BrowserDistribution::CHROME_BROWSER,
chrome_state
);
[
all
...]
install_worker.cc
1392
const ProductState*
chrome_state
= original_state.GetProductState(
local
1415
const ProductState*
chrome_state
= original_state.GetProductState(
local
[
all
...]
setup_main.cc
403
const ProductState*
chrome_state
=
local
417
if (app_host && !chrome && !chrome_frame && !cf_state && !
chrome_state
) {
467
} else if (
chrome_state
) {
[
all
...]
Completed in 727 milliseconds