summaryrefslogtreecommitdiffstats
path: root/views/controls/menu/menu_delegate.h
diff options
context:
space:
mode:
authorkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-27 17:04:38 +0000
committerkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-27 17:04:38 +0000
commit651dd5c35862b034a6ccf9dbcae7711735b88565 (patch)
tree9c9916ab0b704fd8c3481980e874b3d282bb4263 /views/controls/menu/menu_delegate.h
parent9f5896a00af05e445ee9775a638cb0002269cb3d (diff)
downloadchromium_src-651dd5c35862b034a6ccf9dbcae7711735b88565.zip
chromium_src-651dd5c35862b034a6ccf9dbcae7711735b88565.tar.gz
chromium_src-651dd5c35862b034a6ccf9dbcae7711735b88565.tar.bz2
Coverity: Fix uninitialized member variables.
CID_COUNT=12 CID=100727, 100582, 100851, 100854, 100904, 101224, 101533, 101534, 101535, 101615, 101631, 101647 BUG=none TEST=none Review URL: http://codereview.chromium.org/7983053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102953 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/menu/menu_delegate.h')
-rw-r--r--views/controls/menu/menu_delegate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/views/controls/menu/menu_delegate.h b/views/controls/menu/menu_delegate.h
index 9d7c8a2..77468d1 100644
--- a/views/controls/menu/menu_delegate.h
+++ b/views/controls/menu/menu_delegate.h
@@ -38,6 +38,8 @@ class VIEWS_EXPORT MenuDelegate {
// Used during drag and drop to indicate where the drop indicator should
// be rendered.
enum DropPosition {
+ DROP_UNKNOWN = -1,
+
// Indicates a drop is not allowed here.
DROP_NONE,