| 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/bind.h" |
| 11 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 12 #include "base/string16.h" | 13 #include "base/string16.h" |
| 13 #include "base/values.h" | 14 #include "base/values.h" |
| 14 #include "chrome/browser/chromeos/cros/burn_library.h" | 15 #include "chrome/browser/chromeos/cros/burn_library.h" |
| 15 #include "chrome/browser/chromeos/cros/cros_library.h" | 16 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 16 #include "chrome/browser/chromeos/cros/mount_library.h" | 17 #include "chrome/browser/chromeos/cros/mount_library.h" |
| 17 #include "chrome/browser/chromeos/cros/network_library.h" | 18 #include "chrome/browser/chromeos/cros/network_library.h" |
| 18 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 19 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 19 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h" | 20 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h" |
| 20 #include "content/browser/download/download_item.h" | 21 #include "content/browser/download/download_item.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 49 void OnImageDirCreated(bool success) { | 50 void OnImageDirCreated(bool success) { |
| 50 if (delegate_) | 51 if (delegate_) |
| 51 delegate_->ImageDirCreatedOnUIThread(success); | 52 delegate_->ImageDirCreatedOnUIThread(success); |
| 52 } | 53 } |
| 53 | 54 |
| 54 // WebUIHandlerTaskProxy is created on the UI thread, so in some cases, | 55 // WebUIHandlerTaskProxy is created on the UI thread, so in some cases, |
| 55 // we need to post back to the UI thread for destruction. | 56 // we need to post back to the UI thread for destruction. |
| 56 void DeleteOnUIThread() { | 57 void DeleteOnUIThread() { |
| 57 BrowserThread::PostTask( | 58 BrowserThread::PostTask( |
| 58 BrowserThread::UI, FROM_HERE, | 59 BrowserThread::UI, FROM_HERE, |
| 59 NewRunnableMethod(this, &WebUIHandlerTaskProxy::DoNothing)); | 60 base::Bind(&WebUIHandlerTaskProxy::DoNothing, this)); |
| 60 } | 61 } |
| 61 | 62 |
| 62 void DoNothing() {} | 63 void DoNothing() {} |
| 63 | 64 |
| 64 private: | 65 private: |
| 65 base::WeakPtr<Delegate> delegate_; | 66 base::WeakPtr<Delegate> delegate_; |
| 66 | 67 |
| 67 friend class base::RefCountedThreadSafe<WebUIHandlerTaskProxy>; | 68 friend class base::RefCountedThreadSafe<WebUIHandlerTaskProxy>; |
| 68 ~WebUIHandlerTaskProxy(); | 69 ~WebUIHandlerTaskProxy(); |
| 69 | 70 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 StateMachine* state_machine_; | 204 StateMachine* state_machine_; |
| 204 bool observing_burn_lib_; | 205 bool observing_burn_lib_; |
| 205 bool working_; | 206 bool working_; |
| 206 | 207 |
| 207 DISALLOW_COPY_AND_ASSIGN(WebUIHandler); | 208 DISALLOW_COPY_AND_ASSIGN(WebUIHandler); |
| 208 }; | 209 }; |
| 209 | 210 |
| 210 } // namespace imageburner. | 211 } // namespace imageburner. |
| 211 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ | 212 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ |
| 212 | 213 |
| OLD | NEW |