OLD | NEW |
1 // Copyright (c) 2011 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_REMOTING_SETUP_FLOW_H_ | 5 #ifndef CHROME_BROWSER_REMOTING_SETUP_FLOW_H_ |
6 #define CHROME_BROWSER_REMOTING_SETUP_FLOW_H_ | 6 #define CHROME_BROWSER_REMOTING_SETUP_FLOW_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 10 #include "chrome/browser/webui/html_dialog_ui.h" |
11 #include "chrome/browser/webui/web_ui.h" | 11 #include "chrome/browser/webui/web_ui.h" |
12 #include "chrome/common/remoting/chromoting_host_info.h" | 12 #include "chrome/common/remoting/chromoting_host_info.h" |
13 | 13 |
14 class ListValue; | 14 class ListValue; |
15 class ServiceProcessControl; | 15 class ServiceProcessControl; |
16 | 16 |
17 namespace remoting { | 17 namespace remoting { |
18 | 18 |
19 class SetupFlow; | 19 class SetupFlow; |
20 | 20 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 SetupFlowContext context_; | 211 SetupFlowContext context_; |
212 | 212 |
213 scoped_ptr<SetupFlowStep> current_step_; | 213 scoped_ptr<SetupFlowStep> current_step_; |
214 | 214 |
215 DISALLOW_COPY_AND_ASSIGN(SetupFlow); | 215 DISALLOW_COPY_AND_ASSIGN(SetupFlow); |
216 }; | 216 }; |
217 | 217 |
218 } // namespace remoting | 218 } // namespace remoting |
219 | 219 |
220 #endif // CHROME_BROWSER_REMOTING_SETUP_FLOW_H_ | 220 #endif // CHROME_BROWSER_REMOTING_SETUP_FLOW_H_ |
OLD | NEW |