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

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

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/gtk/about_chrome_dialog.cc ('k') | chrome/browser/gtk/accelerators_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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
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_ACCELERATORS_GTK_H_ 5 #ifndef CHROME_BROWSER_GTK_ACCELERATORS_GTK_H_
6 #define CHROME_BROWSER_GTK_ACCELERATORS_GTK_H_ 6 #define CHROME_BROWSER_GTK_ACCELERATORS_GTK_H_
7 #pragma once 7 #pragma once
8 8
9 #include "app/menus/accelerator_gtk.h" 9 #include "chrome/browser/ui/gtk/accelerators_gtk.h"
10 #include "base/hash_tables.h" 10 // TODO(msw): remove this file once all includes have been updated.
11
12 template <typename T> struct DefaultSingletonTraits;
13
14 class AcceleratorsGtk {
15 public:
16 typedef std::vector<std::pair<int, menus::AcceleratorGtk> >
17 AcceleratorGtkList;
18 typedef AcceleratorGtkList::const_iterator const_iterator;
19
20 // Returns the singleton instance.
21 static AcceleratorsGtk* GetInstance();
22
23 const_iterator const begin() {
24 return all_accelerators_.begin();
25 }
26
27 const_iterator const end() {
28 return all_accelerators_.end();
29 }
30
31 // Returns NULL if there is no accelerator for the command.
32 const menus::AcceleratorGtk* GetPrimaryAcceleratorForCommand(int command_id);
33
34 private:
35 friend struct DefaultSingletonTraits<AcceleratorsGtk>;
36
37 AcceleratorsGtk();
38 ~AcceleratorsGtk();
39
40 base::hash_map<int, menus::AcceleratorGtk> primary_accelerators_;
41
42 AcceleratorGtkList all_accelerators_;
43 };
44 11
45 #endif // CHROME_BROWSER_GTK_ACCELERATORS_GTK_H_ 12 #endif // CHROME_BROWSER_GTK_ACCELERATORS_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/about_chrome_dialog.cc ('k') | chrome/browser/gtk/accelerators_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698