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

Side by Side Diff: chrome/renderer/searchbox/searchbox.h

Issue 11262015: Remove unused / unnecessary stuff from Instant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove SuggestedTextView entirely Created 8 years, 1 month 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 | « chrome/common/instant_types.h ('k') | chrome/renderer/searchbox/searchbox_extension.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_SEARCHBOX_SEARCHBOX_H_ 5 #ifndef CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
6 #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ 6 #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 size_t selection_start_; 77 size_t selection_start_;
78 size_t selection_end_; 78 size_t selection_end_;
79 size_t results_base_; 79 size_t results_base_;
80 gfx::Rect rect_; 80 gfx::Rect rect_;
81 std::vector<InstantAutocompleteResult> autocomplete_results_; 81 std::vector<InstantAutocompleteResult> autocomplete_results_;
82 size_t last_results_base_; 82 size_t last_results_base_;
83 std::vector<InstantAutocompleteResult> last_autocomplete_results_; 83 std::vector<InstantAutocompleteResult> last_autocomplete_results_;
84 bool is_focused_; 84 bool is_focused_;
85 bool active_tab_is_ntp_; 85 bool active_tab_is_ntp_;
86 86
87 DISALLOW_IMPLICIT_CONSTRUCTORS(SearchBox); 87 DISALLOW_COPY_AND_ASSIGN(SearchBox);
88 }; 88 };
89 89
90 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ 90 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
OLDNEW
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/renderer/searchbox/searchbox_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698