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

Side by Side Diff: chrome/browser/autocomplete/history_provider.cc

Issue 6078005: Make starred History*Provider results stay in the autocomplete dropdown, update tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding additional Quit() comment Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autocomplete/history_provider.h ('k') | no next file » | 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 #include "chrome/browser/autocomplete/history_url_provider.h" 5 #include "chrome/browser/autocomplete/history_url_provider.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 25 matching lines...) Expand all
36 NOTREACHED() << "Can't delete requested URL"; 36 NOTREACHED() << "Can't delete requested URL";
37 return; 37 return;
38 } 38 }
39 history_service->DeleteURL(selected_url); 39 history_service->DeleteURL(selected_url);
40 40
41 // Delete the match from the current set of matches. 41 // Delete the match from the current set of matches.
42 bool found = false; 42 bool found = false;
43 for (ACMatches::iterator i(matches_.begin()); i != matches_.end(); ++i) { 43 for (ACMatches::iterator i(matches_.begin()); i != matches_.end(); ++i) {
44 if (i->destination_url == selected_url && i->type == match.type) { 44 if (i->destination_url == selected_url && i->type == match.type) {
45 found = true; 45 found = true;
46 if (i->is_history_what_you_typed_match) { 46 if (i->is_history_what_you_typed_match || i->starred) {
47 // We can't get rid of the What You Typed match, but we can make it 47 // We can't get rid of What-You-Typed or Bookmarked matches,
48 // look like it has no backing data. 48 // but we can make them look like they have no backing data.
49 i->deletable = false; 49 i->deletable = false;
50 i->description.clear(); 50 i->description.clear();
51 i->description_class.clear(); 51 i->description_class.clear();
52 } else { 52 } else {
53 matches_.erase(i); 53 matches_.erase(i);
54 } 54 }
55 break; 55 break;
56 } 56 }
57 } 57 }
58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches"; 58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 DCHECK(scheme_pos != std::wstring::npos); 135 DCHECK(scheme_pos != std::wstring::npos);
136 136
137 // Erase scheme plus up to two slashes. 137 // Erase scheme plus up to two slashes.
138 size_t prefix_end = scheme_pos + strlen(chrome::kHttpScheme) + 1; 138 size_t prefix_end = scheme_pos + strlen(chrome::kHttpScheme) + 1;
139 const size_t after_slashes = std::min(url->length(), prefix_end + 2); 139 const size_t after_slashes = std::min(url->length(), prefix_end + 2);
140 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == L'/')) 140 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == L'/'))
141 ++prefix_end; 141 ++prefix_end;
142 url->erase(scheme_pos, prefix_end - scheme_pos); 142 url->erase(scheme_pos, prefix_end - scheme_pos);
143 return (scheme_pos == 0) ? prefix_end : 0; 143 return (scheme_pos == 0) ? prefix_end : 0;
144 } 144 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/history_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698