Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_GESTURE_CONFIG_UI_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_GESTURE_CONFIG_UI_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "content/public/browser/web_ui_controller.h" | |
| 10 | |
| 11 namespace base { | |
| 12 class ListValue; | |
| 13 } // namespace base | |
|
James Hawkins
2012/06/12 15:48:14
nit: Two spaces before start of comment.
| |
| 14 | |
| 15 // The WebUI for chrome://gesture | |
|
James Hawkins
2012/06/12 15:48:14
nit: Missing period at end of sentence.
| |
| 16 class GestureConfigUI : public content::WebUIController { | |
| 17 public: | |
| 18 explicit GestureConfigUI(content::WebUI* web_ui); | |
|
James Hawkins
2012/06/12 15:48:14
nit: Document |web_ui|.
| |
| 19 virtual ~GestureConfigUI(); | |
| 20 void GetPreferenceValue(const base::ListValue* args); | |
|
James Hawkins
2012/06/12 15:48:14
nit: Document methods.
James Hawkins
2012/06/12 15:48:14
nit: These don't need to be public, I imagine.
Kevin Greer
2012/06/12 18:01:53
Documentation moved from .cc to .h.
On 2012/06/12
Kevin Greer
2012/06/12 18:01:53
Made private.
On 2012/06/12 15:48:14, James Hawkin
Kevin Greer
2012/06/12 18:01:53
Done.
| |
| 21 void SetPreferenceValue(const base::ListValue* args); | |
| 22 | |
| 23 private: | |
| 24 DISALLOW_COPY_AND_ASSIGN(GestureConfigUI); | |
| 25 }; | |
| 26 | |
| 27 #endif // CHROME_BROWSER_UI_WEBUI_GESTURE_CONFIG_UI_H_ | |
| OLD | NEW |