OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "chrome/browser/ui/webui/options2/options_ui2.h" | 11 #include "chrome/browser/ui/webui/options2/options_ui.h" |
12 #include "ui/aura/display_observer.h" | 12 #include "ui/aura/display_observer.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class DictionaryValue; | 15 class DictionaryValue; |
16 class ListValue; | 16 class ListValue; |
17 } | 17 } |
18 | 18 |
19 namespace chromeos { | 19 namespace chromeos { |
20 namespace options2 { | 20 namespace options2 { |
21 | 21 |
(...skipping 30 matching lines...) Expand all Loading... |
52 void HandleMirroring(const base::ListValue* args); | 52 void HandleMirroring(const base::ListValue* args); |
53 void HandleDisplayLayout(const base::ListValue* args); | 53 void HandleDisplayLayout(const base::ListValue* args); |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(DisplayOptionsHandler); | 55 DISALLOW_COPY_AND_ASSIGN(DisplayOptionsHandler); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace options2 | 58 } // namespace options2 |
59 } // namespace chromeos | 59 } // namespace chromeos |
60 | 60 |
61 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ | 61 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_DISPLAY_OPTIONS_HANDLER_H_ |
OLD | NEW |