OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:chrome_path
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/cloud_print/service/win/
setup_listener.cc
22
const char SetupListener::kChromePathJsonValueName[] = "
chrome_path
";
71
base::string16
chrome_path
;
local
72
dictionary->GetString(kChromePathJsonValueName, &
chrome_path
);
73
chrome_path_ = base::FilePath(
chrome_path
);
setup_listener.h
46
const base::FilePath&
chrome_path
() const {
function in class:SetupListener
chrome_launcher.cc
219
base::FilePath
chrome_path
= chrome_launcher_support::GetAnyChromePath();
local
221
if (!
chrome_path
.empty()) {
222
CommandLine cmd(
chrome_path
);
282
base::FilePath
chrome_path
= chrome_launcher_support::GetAnyChromePath();
local
284
if (
chrome_path
.empty()) {
303
CommandLine cmd(
chrome_path
);
/external/chromium_org/chrome/installer/launcher_support/
chrome_launcher_support.cc
174
base::FilePath
chrome_path
;
local
175
if (
chrome_path
.empty())
176
chrome_path
= GetChromePathForInstallationLevel(SYSTEM_LEVEL_INSTALLATION);
177
if (
chrome_path
.empty())
178
chrome_path
= GetChromePathForInstallationLevel(USER_LEVEL_INSTALLATION);
179
return
chrome_path
;
/external/chromium_org/chrome_frame/
chrome_launcher.cc
198
std::wstring
chrome_path
;
local
199
if (GetChromeExecutablePath(&
chrome_path
)) {
204
command_line.reserve(
chrome_path
.size() + 2);
205
command_line.append(1, L'\"').append(
chrome_path
).append(1, L'\"');
220
if (CreateProcess(&
chrome_path
[0], &command_line[0],
236
bool GetChromeExecutablePath(std::wstring*
chrome_path
) {
237
_ASSERT(
chrome_path
);
259
*
chrome_path
= cur_path;
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor_unittest.cc
98
base::FilePath
chrome_path
= cloud_print::GetChromeExePath();
local
99
EXPECT_FALSE(
chrome_path
.empty());
101
chrome_path
.value().rfind(kAlternateChromeExePath) != std::string::npos);
102
EXPECT_TRUE(base::PathExists(
chrome_path
));
104
chrome_path
= cloud_print::GetChromeExePath();
106
EXPECT_TRUE(
chrome_path
.empty() ||
107
chrome_path
.value().rfind(kChromeExePath) == std::string::npos);
port_monitor.cc
207
base::FilePath
chrome_path
= GetChromeExePath();
local
208
if (
chrome_path
.empty()) {
213
CommandLine command_line(
chrome_path
);
/external/chromium_org/win8/metro_driver/
toast_notification_handler.cc
200
base::FilePath
chrome_path
;
local
201
if (!PathService::Get(base::FILE_EXE, &
chrome_path
)) {
208
chrome_path
.value().c_str());
/external/chromium_org/chrome/test/base/
in_process_browser_test.cc
131
base::FilePath
chrome_path
;
local
132
CHECK(PathService::Get(base::FILE_EXE, &
chrome_path
));
133
chrome_path
=
chrome_path
.DirName();
134
chrome_path
=
chrome_path
.Append(chrome::kBrowserProcessExecutablePath);
135
CHECK(PathService::Override(base::FILE_EXE,
chrome_path
));
/external/chromium_org/content/browser/zygote_host/
zygote_host_impl_linux.cc
77
base::FilePath
chrome_path
;
local
78
CHECK(PathService::Get(base::FILE_EXE, &
chrome_path
));
79
CommandLine cmd_line(
chrome_path
);
Completed in 561 milliseconds