Index: chrome/browser/gesture_prefs.h |
diff --git a/chrome/browser/gesture_prefs.h b/chrome/browser/gesture_prefs.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1f2ef7570be1e9a046a0bb28c3cd16cbe0dfccb4 |
--- /dev/null |
+++ b/chrome/browser/gesture_prefs.h |
@@ -0,0 +1,24 @@ |
+// Copyright (c) 2012 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. |
+ |
+#ifndef CHROME_BROWSER_GESTURE_PREFS_H_ |
+#define CHROME_BROWSER_GESTURE_PREFS_H_ |
+#pragma once |
+ |
+#include "base/compiler_specific.h" |
+#include "base/memory/scoped_ptr.h" |
+#include "chrome/browser/prefs/pref_change_registrar.h" |
+#include "chrome/browser/prefs/pref_member.h" |
+#include "content/public/browser/notification_observer.h" |
+#include "content/public/browser/notification_types.h" |
+ |
+class GesturePrefsHelper { |
rjkroege
2012/02/24 15:21:34
class GesturePrefs is in the .cc? and the helper i
|
+ public: |
+ static void RegisterPrefs(PrefService* prefs); |
+ private: |
+ GesturePrefsHelper(); |
+ DISALLOW_COPY_AND_ASSIGN(GesturePrefsHelper); |
+}; |
+ |
+#endif // CHROME_BROWSER_GESTURE_PREFS_H_ |