summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-02 22:40:06 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-02 22:40:06 +0000
commit9294cbb0e98567abb0a2fd6789845a6575951641 (patch)
treea68fc36e107c88cb7ee00478eb8c25abfa3d9411 /chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc
parent03d3ba01a3e7055c13c88d27ff03c9d8a79590c2 (diff)
downloadchromium_src-9294cbb0e98567abb0a2fd6789845a6575951641.zip
chromium_src-9294cbb0e98567abb0a2fd6789845a6575951641.tar.gz
chromium_src-9294cbb0e98567abb0a2fd6789845a6575951641.tar.bz2
ui/base: Clean up our AcceleratorGtk class.
Currently this class is fully implemented in the header file, and this have annoyed me for a long time. Most of our class implementations reside in source files, so this patch fix this now. And this also makes it easier to read. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/9965049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130236 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc')
-rw-r--r--chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc b/chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc
index 2c3f8d8..588def4 100644
--- a/chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc
+++ b/chrome/browser/ui/gtk/browser_actions_toolbar_gtk.cc
@@ -4,8 +4,9 @@
#include "chrome/browser/ui/gtk/browser_actions_toolbar_gtk.h"
-#include <algorithm>
#include <gtk/gtk.h>
+
+#include <algorithm>
#include <vector>
#include "base/bind.h"
@@ -31,8 +32,8 @@
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/extensions/extension.h"
-#include "chrome/common/extensions/extension_manifest_constants.h"
#include "chrome/common/extensions/extension_action.h"
+#include "chrome/common/extensions/extension_manifest_constants.h"
#include "chrome/common/extensions/extension_resource.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"