Index: chrome/browser/sync/glue/typed_url_model_associator.cc |
=================================================================== |
--- chrome/browser/sync/glue/typed_url_model_associator.cc (revision 149878) |
+++ chrome/browser/sync/glue/typed_url_model_associator.cc (working copy) |
@@ -119,6 +119,10 @@ |
if (url.url().spec().empty()) |
return true; |
+ // Ignore local file URLs. |
+ if (GURL(url.url()).SchemeIsFile()) |
+ return true; |
+ |
// We ignore URLs that were imported, but have never been visited by |
// chromium. |
static const int kLastImportedSource = history::SOURCE_EXTENSION; |