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

Unified Diff: chrome/browser/history/history_backend.cc

Issue 9586012: Some fixes split off from https://chromiumcodereview.appspot.com/9570064/ to try and make the omnib… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/history_backend.cc
===================================================================
--- chrome/browser/history/history_backend.cc (revision 124678)
+++ chrome/browser/history/history_backend.cc (working copy)
@@ -794,8 +794,10 @@
return;
}
- if (i->typed_count() > 0)
+ if (i->typed_count() > 0) {
modified->changed_urls.push_back(*i);
+ modified->changed_urls.back().set_id(url_id); // *i likely has |id_| 0.
+ }
}
// Add the page to the full text index. This function is also used for

Powered by Google App Engine
This is Rietveld 408576698