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

Unified Diff: base/scoped_vector.h

Issue 4591001: Display a warning when autofill is disabled for a website. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now with unit tests! Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | chrome/renderer/autofill_helper.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/scoped_vector.h
diff --git a/base/scoped_vector.h b/base/scoped_vector.h
index ec152c9dc46bb24d3b3200c84c4b23bc3fbcda17..04b58b6760e624067eabb6d3395e315280b81ecf 100644
--- a/base/scoped_vector.h
+++ b/base/scoped_vector.h
@@ -55,6 +55,7 @@ class ScopedVector {
void reset() { STLDeleteElements(&v); }
void resize(size_t new_size) { v.resize(new_size); }
+ void clear() { v.clear(); }
dhollowa 2010/11/12 01:52:03 |weak_erase| should be sufficient, no?
Ilya Sherman 2010/11/12 05:15:38 Oops, I should be using reset(). Thanks for point
// Lets the ScopedVector take ownership of |x|.
iterator insert(iterator position, T* x) {
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | chrome/renderer/autofill_helper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698