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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit.cc

Issue 231007: Coverity: Initialize the remaining members of AutocompleteEditModel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete_edit.cc
===================================================================
--- chrome/browser/autocomplete/autocomplete_edit.cc (revision 26983)
+++ chrome/browser/autocomplete/autocomplete_edit.cc (working copy)
@@ -4,6 +4,8 @@
#include "chrome/browser/autocomplete/autocomplete_edit.h"
+#include <string>
+
#include "base/basictypes.h"
#include "base/string_util.h"
#include "chrome/browser/autocomplete/autocomplete_edit_view.h"
@@ -36,16 +38,19 @@
AutocompleteEditController* controller,
Profile* profile)
: view_(view),
+ popup_(NULL),
controller_(controller),
has_focus_(false),
user_input_in_progress_(false),
just_deleted_text_(false),
has_temporary_text_(false),
+ original_keyword_ui_state_(NORMAL),
paste_state_(NONE),
control_key_state_(UP),
is_keyword_hint_(false),
keyword_ui_state_(NORMAL),
show_search_hint_(true),
+ paste_and_go_transition_(PageTransition::TYPED),
profile_(profile) {
if (++synchronous_controller_refcount == 1) {
// We don't have a controller yet, so create one. No profile is set since
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698