| Index: components/omnibox/browser/shortcuts_database.h
|
| diff --git a/components/omnibox/browser/shortcuts_database.h b/components/omnibox/browser/shortcuts_database.h
|
| index 10d6a4ca09248b5100f4cea7dc02313e8540787c..7647a727bf39c36a2e8aae400acee85ef1eac2c9 100644
|
| --- a/components/omnibox/browser/shortcuts_database.h
|
| +++ b/components/omnibox/browser/shortcuts_database.h
|
| @@ -51,6 +51,7 @@ class ShortcutsDatabase : public base::RefCountedThreadSafe<ShortcutsDatabase> {
|
| int transition,
|
| int type,
|
| const base::string16& keyword);
|
| + MatchCore(const MatchCore& other);
|
| ~MatchCore();
|
|
|
| base::string16 fill_into_edit;
|
| @@ -74,6 +75,7 @@ class ShortcutsDatabase : public base::RefCountedThreadSafe<ShortcutsDatabase> {
|
| int number_of_hits);
|
| // Required for STL, we don't use this directly.
|
| Shortcut();
|
| + Shortcut(const Shortcut& other);
|
| ~Shortcut();
|
|
|
| std::string id; // Unique guid for the shortcut.
|
|
|