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

Side by Side Diff: Source/core/html/HTMLSelectElement.h

Issue 613213002: [Patch resubmit]: Turn off autofill highlight when changing option in an autofilled <select> element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update code as per review comments. Created 6 years, 2 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
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2000 Dirk Mueller (mueller@kde.org) 5 * (C) 2000 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * Copyright (C) 2010 Google Inc. All rights reserved. 7 * Copyright (C) 2010 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 TypeAhead m_typeAhead; 220 TypeAhead m_typeAhead;
221 int m_size; 221 int m_size;
222 int m_lastOnChangeIndex; 222 int m_lastOnChangeIndex;
223 int m_activeSelectionAnchorIndex; 223 int m_activeSelectionAnchorIndex;
224 int m_activeSelectionEndIndex; 224 int m_activeSelectionEndIndex;
225 bool m_isProcessingUserDrivenChange; 225 bool m_isProcessingUserDrivenChange;
226 bool m_multiple; 226 bool m_multiple;
227 bool m_activeSelectionState; 227 bool m_activeSelectionState;
228 mutable bool m_shouldRecalcListItems; 228 mutable bool m_shouldRecalcListItems;
229 int m_suggestedIndex; 229 int m_suggestedIndex;
230 bool m_isAutofilledByPreview;
230 }; 231 };
231 232
232 } // namespace blink 233 } // namespace blink
233 234
234 #endif // HTMLSelectElement_h 235 #endif // HTMLSelectElement_h
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/fast/forms/autofilled-expected.txt ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698