| 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 | 5 |
| 6 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ | 6 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ |
| 7 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ | 7 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/chromeos/cros/burn_library.h" | 14 #include "chrome/browser/chromeos/cros/burn_library.h" |
| 15 #include "chrome/browser/chromeos/cros/cros_library.h" | 15 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 16 #include "chrome/browser/chromeos/cros/mount_library.h" | 16 #include "chrome/browser/chromeos/cros/mount_library.h" |
| 17 #include "chrome/browser/chromeos/cros/network_library.h" | 17 #include "chrome/browser/chromeos/cros/network_library.h" |
| 18 #include "chrome/browser/download/download_item.h" | |
| 19 #include "chrome/browser/download/download_manager.h" | |
| 20 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 18 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 21 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h" | 19 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h" |
| 20 #include "content/browser/download/download_item.h" |
| 21 #include "content/browser/download/download_manager.h" |
| 22 #include "content/browser/tab_contents/tab_contents.h" | 22 #include "content/browser/tab_contents/tab_contents.h" |
| 23 #include "googleurl/src/gurl.h" | 23 #include "googleurl/src/gurl.h" |
| 24 | 24 |
| 25 namespace imageburner { | 25 namespace imageburner { |
| 26 | 26 |
| 27 enum ProgressType { | 27 enum ProgressType { |
| 28 DOWNLOAD, | 28 DOWNLOAD, |
| 29 UNZIP, | 29 UNZIP, |
| 30 BURN | 30 BURN |
| 31 }; | 31 }; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 StateMachine* state_machine_; | 203 StateMachine* state_machine_; |
| 204 bool observing_burn_lib_; | 204 bool observing_burn_lib_; |
| 205 bool working_; | 205 bool working_; |
| 206 | 206 |
| 207 DISALLOW_COPY_AND_ASSIGN(WebUIHandler); | 207 DISALLOW_COPY_AND_ASSIGN(WebUIHandler); |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 } // namespace imageburner. | 210 } // namespace imageburner. |
| 211 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ | 211 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ |
| 212 | 212 |
| OLD | NEW |