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

Side by Side Diff: chrome/browser/autocomplete/autocomplete.h

Issue 5270010: Revert 67662 - FBTF: Remove unneeded headers from base/ (part 10)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « base/timer_unittest.cc ('k') | chrome/browser/autocomplete_history_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_AUTOCOMPLETE_AUTOCOMPLETE_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/logging.h"
13 #include "base/ref_counted.h" 13 #include "base/ref_counted.h"
14 #include "base/timer.h" 14 #include "base/timer.h"
15 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
16 #include "googleurl/src/url_parse.h" 16 #include "googleurl/src/url_parse.h"
17 17
18 // The AutocompleteController is the center of the autocomplete system. A 18 // The AutocompleteController is the center of the autocomplete system. A
19 // class creates an instance of the controller, which in turn creates a set of 19 // class creates an instance of the controller, which in turn creates a set of
20 // AutocompleteProviders to serve it. The owning class can ask the controller 20 // AutocompleteProviders to serve it. The owning class can ask the controller
21 // to Start() a query; the controller in turn passes this call down to the 21 // to Start() a query; the controller in turn passes this call down to the
22 // providers, each of which keeps track of its own matches and whether it has 22 // providers, each of which keeps track of its own matches and whether it has
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 AutocompleteInput::Type input_type; 725 AutocompleteInput::Type input_type;
726 // Selected index (if selected) or -1 (AutocompletePopupModel::kNoMatch). 726 // Selected index (if selected) or -1 (AutocompletePopupModel::kNoMatch).
727 size_t selected_index; 727 size_t selected_index;
728 // Inline autocompleted length (if displayed). 728 // Inline autocompleted length (if displayed).
729 size_t inline_autocompleted_length; 729 size_t inline_autocompleted_length;
730 // Result set. 730 // Result set.
731 const AutocompleteResult& result; 731 const AutocompleteResult& result;
732 }; 732 };
733 733
734 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_H_ 734 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_H_
OLDNEW
« no previous file with comments | « base/timer_unittest.cc ('k') | chrome/browser/autocomplete_history_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698