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

Side by Side Diff: chrome/browser/gtk/bookmark_manager_gtk.h

Issue 202035: Fix accel leak in task manager and bookmark manager by using (Closed)
Patch Set: null Created 11 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_manager_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 5 #ifndef CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
6 #define CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 6 #define CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
7 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 // The last mouse down we got. Only valid while |delaying_mousedown| is true. 333 // The last mouse down we got. Only valid while |delaying_mousedown| is true.
334 GdkEventButton mousedown_event_; 334 GdkEventButton mousedown_event_;
335 bool delaying_mousedown_; 335 bool delaying_mousedown_;
336 // This is true while we are propagating a delayed mousedown. It is used to 336 // This is true while we are propagating a delayed mousedown. It is used to
337 // tell the button press handler to ignore the event. 337 // tell the button press handler to ignore the event.
338 bool sending_delayed_mousedown_; 338 bool sending_delayed_mousedown_;
339 339
340 // This is used to avoid recursively calling our right click handler. It is 340 // This is used to avoid recursively calling our right click handler. It is
341 // only true when a right click is already being handled. 341 // only true when a right click is already being handled.
342 bool ignore_rightclicks_; 342 bool ignore_rightclicks_;
343
344 GtkAccelGroup* accel_group_;
343 }; 345 };
344 346
345 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 347 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_manager_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698