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_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ | 6 #ifndef CHROME_BROWSER_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ |
7 #define CHROME_BROWSER_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ | 7 #define CHROME_BROWSER_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "base/string16.h" | 15 #include "base/string16.h" |
16 #include "base/values.h" | 16 #include "base/values.h" |
17 #include "chrome/browser/chromeos/cros/burn_library.h" | 17 #include "chrome/browser/chromeos/cros/burn_library.h" |
18 #include "chrome/browser/chromeos/cros/cros_library.h" | 18 #include "chrome/browser/chromeos/cros/cros_library.h" |
19 #include "chrome/browser/chromeos/cros/mount_library.h" | 19 #include "chrome/browser/chromeos/cros/mount_library.h" |
20 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | |
21 #include "chrome/browser/download/download_item.h" | 20 #include "chrome/browser/download/download_item.h" |
22 #include "chrome/browser/download/download_manager.h" | 21 #include "chrome/browser/download/download_manager.h" |
23 #include "chrome/browser/download/download_util.h" | 22 #include "chrome/browser/download/download_util.h" |
| 23 #include "chrome/browser/webui/chrome_url_data_manager.h" |
24 #include "chrome/browser/webui/web_ui.h" | 24 #include "chrome/browser/webui/web_ui.h" |
25 #include "googleurl/src/gurl.h" | 25 #include "googleurl/src/gurl.h" |
26 #include "net/base/file_stream.h" | 26 #include "net/base/file_stream.h" |
27 #include "ui/base/dragdrop/download_file_interface.h" | 27 #include "ui/base/dragdrop/download_file_interface.h" |
28 | 28 |
29 template <typename T> struct DefaultSingletonTraits; | 29 template <typename T> struct DefaultSingletonTraits; |
30 | 30 |
31 class ImageBurnResourceManager; | 31 class ImageBurnResourceManager; |
32 class TabContents; | 32 class TabContents; |
33 | 33 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 | 169 |
170 class ImageBurnUI : public WebUI { | 170 class ImageBurnUI : public WebUI { |
171 public: | 171 public: |
172 explicit ImageBurnUI(TabContents* contents); | 172 explicit ImageBurnUI(TabContents* contents); |
173 | 173 |
174 private: | 174 private: |
175 DISALLOW_COPY_AND_ASSIGN(ImageBurnUI); | 175 DISALLOW_COPY_AND_ASSIGN(ImageBurnUI); |
176 }; | 176 }; |
177 | 177 |
178 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ | 178 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_IMAGEBURNER_UI_H_ |
OLD | NEW |