| Index: chrome/browser/history/url_database.cc
|
| ===================================================================
|
| --- chrome/browser/history/url_database.cc (revision 26082)
|
| +++ chrome/browser/history/url_database.cc (working copy)
|
| @@ -10,6 +10,7 @@
|
| #include "app/l10n_util.h"
|
| #include "base/string_util.h"
|
| #include "chrome/common/sqlite_utils.h"
|
| +#include "chrome/common/url_constants.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| using base::Time;
|
| @@ -408,7 +409,7 @@
|
|
|
| bool URLDatabase::MigrateFromVersion11ToVersion12() {
|
| URLRow about_row;
|
| - if (GetRowForURL(GURL("about:blank"), &about_row)) {
|
| + if (GetRowForURL(GURL(chrome::kAboutBlankURL), &about_row)) {
|
| about_row.set_favicon_id(0);
|
| return UpdateURLRow(about_row.id(), about_row);
|
| }
|
|
|