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

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

Issue 9852002: Have URL Modifications sent Regardless of Typed. (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/in_memory_url_index.cc
===================================================================
--- chrome/browser/history/in_memory_url_index.cc (revision 131849)
+++ chrome/browser/history/in_memory_url_index.cc (working copy)
@@ -102,7 +102,7 @@
// TODO(mrossetti): Register for language change notifications.
content::Source<Profile> source(profile);
registrar_.Add(this, chrome::NOTIFICATION_HISTORY_URL_VISITED, source);
- registrar_.Add(this, chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED,
+ registrar_.Add(this, chrome::NOTIFICATION_HISTORY_URLS_MODIFIED,
source);
registrar_.Add(this, chrome::NOTIFICATION_HISTORY_URLS_DELETED, source);
}
@@ -164,7 +164,7 @@
case chrome::NOTIFICATION_HISTORY_URL_VISITED:
OnURLVisited(content::Details<URLVisitedDetails>(details).ptr());
break;
- case chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED:
+ case chrome::NOTIFICATION_HISTORY_URLS_MODIFIED:
OnURLsModified(
content::Details<history::URLsModifiedDetails>(details).ptr());
break;
« no previous file with comments | « chrome/browser/history/in_memory_history_backend.cc ('k') | chrome/browser/sync/glue/typed_url_change_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698