OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dl_item_value
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/automation/
automation_provider.cc
349
DictionaryValue*
dl_item_value
= new DictionaryValue;
local
350
dl_item_value
->SetInteger("id", static_cast<int>(download->GetId()));
351
dl_item_value
->SetString("url", download->GetURL().spec());
352
dl_item_value
->SetString("referrer_url", download->GetReferrerUrl().spec());
353
dl_item_value
->SetString("file_name",
355
dl_item_value
->SetString("full_path",
357
dl_item_value
->SetBoolean("is_paused", download->IsPaused());
358
dl_item_value
->SetBoolean("open_when_complete",
360
dl_item_value
->SetBoolean("is_temporary", download->IsTemporary());
361
dl_item_value
->SetBoolean("is_otr", incognito)
[
all
...]
/external/chromium/chrome/browser/automation/
automation_provider.cc
248
DictionaryValue*
dl_item_value
= new DictionaryValue;
local
249
dl_item_value
->SetInteger("id", static_cast<int>(download->id()));
250
dl_item_value
->SetString("url", download->url().spec());
251
dl_item_value
->SetString("referrer_url", download->referrer_url().spec());
252
dl_item_value
->SetString("file_name",
254
dl_item_value
->SetString("full_path",
256
dl_item_value
->SetBoolean("is_paused", download->is_paused());
257
dl_item_value
->SetBoolean("open_when_complete",
259
dl_item_value
->SetBoolean("is_extension_install",
261
dl_item_value
->SetBoolean("is_temporary", download->is_temporary())
[
all
...]
Completed in 58 milliseconds