Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: chrome/browser/history/history.cc

Issue 10014007: Change 9789001: attempt #3 after fixing the problems with linux Created by Wei Li: https://chromium… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/history/history_backend.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The history system runs on a background thread so that potentially slow 5 // The history system runs on a background thread so that potentially slow
6 // database operations don't delay the browser. This backend processing is 6 // database operations don't delay the browser. This backend processing is
7 // represented by HistoryBackend. The HistoryService's job is to dispatch to 7 // represented by HistoryBackend. The HistoryService's job is to dispatch to
8 // that thread. 8 // that thread.
9 // 9 //
10 // Main thread History thread 10 // Main thread History thread
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 378
379 ScheduleAndForget(PRIORITY_NORMAL, 379 ScheduleAndForget(PRIORITY_NORMAL,
380 &HistoryBackend::AddPageNoVisitForBookmark, url); 380 &HistoryBackend::AddPageNoVisitForBookmark, url);
381 } 381 }
382 382
383 void HistoryService::SetPageTitle(const GURL& url, 383 void HistoryService::SetPageTitle(const GURL& url,
384 const string16& title) { 384 const string16& title) {
385 ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::SetPageTitle, url, title); 385 ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::SetPageTitle, url, title);
386 } 386 }
387 387
388 void HistoryService::UpdateWithPageEndTime(const void* host,
389 int32 page_id,
390 const GURL& url,
391 Time end_ts) {
392 ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::UpdateWithPageEndTime,
393 host, page_id, url, end_ts);
394 }
395
388 void HistoryService::AddPageWithDetails(const GURL& url, 396 void HistoryService::AddPageWithDetails(const GURL& url,
389 const string16& title, 397 const string16& title,
390 int visit_count, 398 int visit_count,
391 int typed_count, 399 int typed_count,
392 Time last_visit, 400 Time last_visit,
393 bool hidden, 401 bool hidden,
394 history::VisitSource visit_source) { 402 history::VisitSource visit_source) {
395 // Filter out unwanted URLs. 403 // Filter out unwanted URLs.
396 if (!CanAddURL(url)) 404 if (!CanAddURL(url))
397 return; 405 return;
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 history::TopSites* ts = profile_->GetTopSitesWithoutCreating(); 885 history::TopSites* ts = profile_->GetTopSitesWithoutCreating();
878 if (ts) 886 if (ts)
879 ts->MigrateFromHistory(); 887 ts->MigrateFromHistory();
880 } 888 }
881 } 889 }
882 890
883 void HistoryService::OnTopSitesReady() { 891 void HistoryService::OnTopSitesReady() {
884 ScheduleAndForget(PRIORITY_NORMAL, 892 ScheduleAndForget(PRIORITY_NORMAL,
885 &HistoryBackend::MigrateThumbnailsDatabase); 893 &HistoryBackend::MigrateThumbnailsDatabase);
886 } 894 }
OLDNEW
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/history/history_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698