OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_urls
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator.h
79
void WriteToHistoryBackend(const history::URLRows*
new_urls
,
89
// |updated_urls| or |
new_urls
| depending on whether the URL already existed
95
history::URLRows*
new_urls
);
typed_url_model_associator.cc
190
history::URLRows
new_urls
;
local
375
&
new_urls
);
402
WriteToHistoryBackend(&
new_urls
, &updated_urls, &new_visits, NULL);
411
history::URLRows*
new_urls
) {
439
new_urls
->push_back(new_url);
512
const history::URLRows*
new_urls
,
516
if (
new_urls
) {
517
history_backend_->AddPagesWithDetails(*
new_urls
, history::SOURCE_SYNCED);
/external/chromium_org/tools/real_world_impact/
real_world_impact.py
229
new_urls
= []
235
new_urls
.append(url)
237
if
new_urls
:
238
print "Downloading static copies of %d sites..." % len(
new_urls
)
241
results = multiprocessing.Pool(20).map(DownloadStaticCopyTask,
new_urls
)
242
failed_urls = [
new_urls
[i] for i,ret in enumerate(results) if not ret]
Completed in 153 milliseconds