diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-04 21:38:07 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-04 21:38:07 +0000 |
commit | 8af4c1991ec7ff8d8e6bcd87d882ba0c99e4f916 (patch) | |
tree | c17049add98efa0cd11dd1ee0289af7ee848d2a1 /views/view_gtk.cc | |
parent | a0c6c257e5715e1e035f831c77ecb02ba209a86c (diff) | |
download | chromium_src-8af4c1991ec7ff8d8e6bcd87d882ba0c99e4f916.zip chromium_src-8af4c1991ec7ff8d8e6bcd87d882ba0c99e4f916.tar.gz chromium_src-8af4c1991ec7ff8d8e6bcd87d882ba0c99e4f916.tar.bz2 |
Adding drag-drop support in and out of the Browser Action overflow menu.
BUG=26990
TEST=Drag icons into and out of (and within) both the Browser Action container and its overflow menu.
Review URL: http://codereview.chromium.org/570014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38135 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view_gtk.cc')
-rw-r--r-- | views/view_gtk.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/views/view_gtk.cc b/views/view_gtk.cc index 0e53b38..7621d0f 100644 --- a/views/view_gtk.cc +++ b/views/view_gtk.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -16,6 +16,10 @@ int View::GetDoubleClickTimeMS() { return display ? display->double_click_time : 500; } +int View::GetMenuShowDelay() { + return kShowFolderDropMenuDelay; +} + ViewAccessibilityWrapper* View::GetViewAccessibilityWrapper() { NOTIMPLEMENTED(); return NULL; |