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

Unified Diff: views/view.h

Issue 570014: Adding drag-drop support in and out of the Browser Action overflow menu.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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
Index: views/view.h
===================================================================
--- views/view.h (revision 37978)
+++ views/view.h (working copy)
@@ -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.
@@ -137,12 +137,20 @@
// The view class name.
static char kViewClassName[];
+ // The default value for how long to wait (in ms) before showing a menu
+ // button on hover. This value is used if the OS doesn't supply one.
+ static const int kShowFolderDropMenuDelay;
sky 2010/02/04 20:58:49 Does this really need to be public? Also, it shoul
+
View();
virtual ~View();
// Returns the amount of time between double clicks, in milliseconds.
static int GetDoubleClickTimeMS();
+ // Returns the amount of time to wait from hovering over a menu button until
+ // showing the menu.
+ static int GetMenuShowDelay();
+
// Sizing functions
// Get the bounds of the View, relative to the parent. Essentially, this

Powered by Google App Engine
This is Rietveld 408576698