Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/memory/weak_ptr.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/network_library.h" 17 #include "chrome/browser/chromeos/cros/network_library.h"
17 #include "chrome/browser/chromeos/disks/disk_mount_manager.h" 18 #include "chrome/browser/chromeos/disks/disk_mount_manager.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/public/browser/download_item.h" 21 #include "content/public/browser/download_item.h"
21 #include "content/public/browser/download_manager.h" 22 #include "content/public/browser/download_manager.h"
(...skipping 30 matching lines...) Expand all
52 53
53 void OnImageDirCreated(bool success) { 54 void OnImageDirCreated(bool success) {
54 if (delegate_) 55 if (delegate_)
55 delegate_->ImageDirCreatedOnUIThread(success); 56 delegate_->ImageDirCreatedOnUIThread(success);
56 } 57 }
57 58
58 // WebUIHandlerTaskProxy is created on the UI thread, so in some cases, 59 // WebUIHandlerTaskProxy is created on the UI thread, so in some cases,
59 // we need to post back to the UI thread for destruction. 60 // we need to post back to the UI thread for destruction.
60 void DeleteOnUIThread(); 61 void DeleteOnUIThread();
61 62
62 void DoNothing() {}
63
64 private: 63 private:
65 base::WeakPtr<Delegate> delegate_; 64 base::WeakPtr<Delegate> delegate_;
66 65
67 friend class base::RefCountedThreadSafe<WebUIHandlerTaskProxy>; 66 friend class base::RefCountedThreadSafe<WebUIHandlerTaskProxy>;
68 ~WebUIHandlerTaskProxy(); 67 ~WebUIHandlerTaskProxy();
69 68
70 DISALLOW_COPY_AND_ASSIGN(WebUIHandlerTaskProxy); 69 DISALLOW_COPY_AND_ASSIGN(WebUIHandlerTaskProxy);
71 }; 70 };
72 71
73 class WebUIHandler 72 class WebUIHandler
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 BurnManager* burn_manager_; 203 BurnManager* burn_manager_;
205 StateMachine* state_machine_; 204 StateMachine* state_machine_;
206 bool observing_burn_lib_; 205 bool observing_burn_lib_;
207 bool working_; 206 bool working_;
208 207
209 DISALLOW_COPY_AND_ASSIGN(WebUIHandler); 208 DISALLOW_COPY_AND_ASSIGN(WebUIHandler);
210 }; 209 };
211 210
212 } // namespace imageburner. 211 } // namespace imageburner.
213 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_ 212 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_IMAGEBURNER_WEBUI_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698