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_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/memory/ref_counted_memory.h" | 15 #include "base/memory/ref_counted_memory.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
18 #include "base/time.h" | 18 #include "base/time/time.h" |
19 #include "chrome/browser/chromeos/imageburner/burn_device_handler.h" | 19 #include "chrome/browser/chromeos/imageburner/burn_device_handler.h" |
20 #include "chromeos/disks/disk_mount_manager.h" | 20 #include "chromeos/disks/disk_mount_manager.h" |
21 #include "chromeos/network/network_state_handler_observer.h" | 21 #include "chromeos/network/network_state_handler_observer.h" |
22 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
23 #include "net/url_request/url_fetcher_delegate.h" | 23 #include "net/url_request/url_fetcher_delegate.h" |
24 | 24 |
25 namespace net { | 25 namespace net { |
26 class URLFetcher; | 26 class URLFetcher; |
27 class URLRequestContextGetter; | 27 class URLRequestContextGetter; |
28 } // namespace net | 28 } // namespace net |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 base::WeakPtrFactory<BurnManager> weak_ptr_factory_; | 404 base::WeakPtrFactory<BurnManager> weak_ptr_factory_; |
405 | 405 |
406 DISALLOW_COPY_AND_ASSIGN(BurnManager); | 406 DISALLOW_COPY_AND_ASSIGN(BurnManager); |
407 }; | 407 }; |
408 | 408 |
409 } // namespace imageburner | 409 } // namespace imageburner |
410 | 410 |
411 } // namespace chromeos | 411 } // namespace chromeos |
412 | 412 |
413 #endif // CHROME_BROWSER_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ | 413 #endif // CHROME_BROWSER_CHROMEOS_IMAGEBURNER_BURN_MANAGER_H_ |
OLD | NEW |