| Index: chrome/browser/extensions/extension_prefs.h
|
| diff --git a/chrome/browser/extensions/extension_prefs.h b/chrome/browser/extensions/extension_prefs.h
|
| index cffb9361f96bddb810f7b014ea5e3ffbbe47c1ba..23c3d8159670d6d420c9f724396bb717b2140e85 100644
|
| --- a/chrome/browser/extensions/extension_prefs.h
|
| +++ b/chrome/browser/extensions/extension_prefs.h
|
| @@ -17,6 +17,7 @@
|
| #include "chrome/browser/extensions/extension_prefs_scope.h"
|
| #include "chrome/browser/extensions/extension_scoped_prefs.h"
|
| #include "chrome/browser/media_galleries/media_galleries_preferences.h"
|
| +#include "chrome/common/extensions/api/omnibox.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "extensions/common/url_pattern_set.h"
|
| #include "sync/api/string_ordinal.h"
|
| @@ -29,7 +30,6 @@ class PrefRegistrySyncable;
|
| namespace extensions {
|
| class ExtensionPrefsUninstallExtension;
|
| class URLPatternSet;
|
| -struct ExtensionOmniboxSuggestion;
|
|
|
| namespace app_file_handler_util {
|
| struct SavedFileEntry;
|
| @@ -323,11 +323,11 @@ class ExtensionPrefs : public ContentSettingsStore::Observer,
|
| std::vector<app_file_handler_util::SavedFileEntry>* out);
|
|
|
| // Controls the omnibox default suggestion as set by the extension.
|
| - ExtensionOmniboxSuggestion GetOmniboxDefaultSuggestion(
|
| + scoped_ptr<api::omnibox::SuggestResult> GetOmniboxDefaultSuggestion(
|
| const std::string& extension_id);
|
| void SetOmniboxDefaultSuggestion(
|
| const std::string& extension_id,
|
| - const ExtensionOmniboxSuggestion& suggestion);
|
| + const api::omnibox::SuggestResult& suggestion);
|
|
|
| // Returns true if the user enabled this extension to be loaded in incognito
|
| // mode.
|
|
|