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

Side by Side Diff: chrome/browser/ui/autofill/autofill_popup_view.cc

Issue 12556002: Always Close the Autofill UI through the same path (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Disable Test On Linux Created 7 years, 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/autofill/autofill_popup_view.h"
6
7 void AutofillPopupView::Hide() {
8 hide_called_ = true;
9 }
10
11 AutofillPopupView::AutofillPopupView() : hide_called_(false) {}
12
13 AutofillPopupView::~AutofillPopupView() {
14 CHECK(hide_called_);
15 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/autofill_popup_view.h ('k') | chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698