summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/shortcuts_database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/history/shortcuts_database.cc')
-rw-r--r--chrome/browser/history/shortcuts_database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/shortcuts_database.cc b/chrome/browser/history/shortcuts_database.cc
index dc1da07..d5dfa06 100644
--- a/chrome/browser/history/shortcuts_database.cc
+++ b/chrome/browser/history/shortcuts_database.cc
@@ -8,10 +8,10 @@
#include <string>
#include <vector>
+#include "base/guid.h"
#include "base/logging.h"
#include "base/stringprintf.h"
#include "base/time.h"
-#include "chrome/common/guid.h"
#include "sql/statement.h"
namespace {
@@ -22,7 +22,7 @@ namespace {
void BindShortcutToStatement(
const history::ShortcutsBackend::Shortcut& shortcut,
sql::Statement* s) {
- DCHECK(guid::IsValidGUID(shortcut.id));
+ DCHECK(base::IsValidGUID(shortcut.id));
s->BindString(0, shortcut.id);
s->BindString16(1, shortcut.text);
s->BindString(2, shortcut.url.spec());