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

Unified Diff: tools/gn/scheduler.h

Issue 499903004: Remove implicit conversions from scoped_refptr to T* in tools/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/scheduler.h
diff --git a/tools/gn/scheduler.h b/tools/gn/scheduler.h
index 8f4a13392f898468603d663675ba9f47a92e64f0..912ca7e10ad089ccc3db26395adc3d66187d7f8a 100644
--- a/tools/gn/scheduler.h
+++ b/tools/gn/scheduler.h
@@ -25,9 +25,9 @@ class Scheduler {
bool Run();
base::MessageLoop* main_loop() { return &main_loop_; }
- base::SequencedWorkerPool* pool() { return pool_; }
+ base::SequencedWorkerPool* pool() { return pool_.get(); }
- InputFileManager* input_file_manager() { return input_file_manager_; }
+ InputFileManager* input_file_manager() { return input_file_manager_.get(); }
bool verbose_logging() const { return verbose_logging_; }
void set_verbose_logging(bool v) { verbose_logging_ = v; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698