Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Unified Diff: components/omnibox/history_quick_provider.h

Issue 1182113009: Componentize HistoryQuickProvider and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/omnibox/history_quick_provider.h
diff --git a/chrome/browser/autocomplete/history_quick_provider.h b/components/omnibox/history_quick_provider.h
similarity index 90%
rename from chrome/browser/autocomplete/history_quick_provider.h
rename to components/omnibox/history_quick_provider.h
index 6a3b9a6175dd1c619fa1602ba1487f98b39e9cd2..6f44f72b13d210e109fb2907d6dfe72a2198e635 100644
--- a/chrome/browser/autocomplete/history_quick_provider.h
+++ b/components/omnibox/history_quick_provider.h
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_QUICK_PROVIDER_H_
-#define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_QUICK_PROVIDER_H_
+#ifndef COMPONENTS_OMNIBOX_HISTORY_QUICK_PROVIDER_H_
+#define COMPONENTS_OMNIBOX_HISTORY_QUICK_PROVIDER_H_
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "chrome/browser/autocomplete/in_memory_url_index.h"
#include "components/history/core/browser/history_types.h"
#include "components/omnibox/autocomplete_input.h"
#include "components/omnibox/autocomplete_match.h"
#include "components/omnibox/history_provider.h"
+#include "components/omnibox/in_memory_url_index.h"
struct ScoredHistoryMatch;
@@ -64,4 +64,4 @@ class HistoryQuickProvider : public HistoryProvider {
DISALLOW_COPY_AND_ASSIGN(HistoryQuickProvider);
};
-#endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_QUICK_PROVIDER_H_
+#endif // COMPONENTS_OMNIBOX_HISTORY_QUICK_PROVIDER_H_

Powered by Google App Engine
This is Rietveld 408576698