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

Side by Side Diff: chrome/browser/ui/search/instant_search_prerenderer.h

Issue 2122903002: Move search-related files from chrome/common to chrome/common/search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move search-related files Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ 5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_
6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ 6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "chrome/common/instant_types.h" 12 #include "chrome/common/search/instant_types.h"
13 #include "content/public/browser/navigation_controller.h" 13 #include "content/public/browser/navigation_controller.h"
14 14
15 class GURL; 15 class GURL;
16 class Profile; 16 class Profile;
17 struct AutocompleteMatch; 17 struct AutocompleteMatch;
18 18
19 namespace chrome { 19 namespace chrome {
20 struct NavigateParams; 20 struct NavigateParams;
21 } 21 }
22 22
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 const GURL prerender_url_; 99 const GURL prerender_url_;
100 100
101 std::unique_ptr<prerender::PrerenderHandle> prerender_handle_; 101 std::unique_ptr<prerender::PrerenderHandle> prerender_handle_;
102 102
103 InstantSuggestion last_instant_suggestion_; 103 InstantSuggestion last_instant_suggestion_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(InstantSearchPrerenderer); 105 DISALLOW_COPY_AND_ASSIGN(InstantSearchPrerenderer);
106 }; 106 };
107 107
108 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ 108 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698