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

Side by Side Diff: content/browser/browser_main_loop.h

Issue 2304073003: Mojoify time zone update IPC from browser to renderer (Closed)
Patch Set: Rebase Created 4 years, 3 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
« no previous file with comments | « content/browser/DEPS ('k') | content/browser/renderer_host/render_process_host_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ 6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 124
125 int GetResultCode() const { return result_code_; } 125 int GetResultCode() const { return result_code_; }
126 126
127 media::AudioManager* audio_manager() const { return audio_manager_.get(); } 127 media::AudioManager* audio_manager() const { return audio_manager_.get(); }
128 MediaStreamManager* media_stream_manager() const { 128 MediaStreamManager* media_stream_manager() const {
129 return media_stream_manager_.get(); 129 return media_stream_manager_.get();
130 } 130 }
131 media::UserInputMonitor* user_input_monitor() const { 131 media::UserInputMonitor* user_input_monitor() const {
132 return user_input_monitor_.get(); 132 return user_input_monitor_.get();
133 } 133 }
134 TimeZoneMonitor* time_zone_monitor() const {
135 return time_zone_monitor_.get();
136 }
134 media::midi::MidiManager* midi_manager() const { return midi_manager_.get(); } 137 media::midi::MidiManager* midi_manager() const { return midi_manager_.get(); }
135 base::Thread* indexed_db_thread() const { return indexed_db_thread_.get(); } 138 base::Thread* indexed_db_thread() const { return indexed_db_thread_.get(); }
136 139
137 bool is_tracing_startup_for_duration() const { 140 bool is_tracing_startup_for_duration() const {
138 return is_tracing_startup_for_duration_; 141 return is_tracing_startup_for_duration_;
139 } 142 }
140 143
141 const base::FilePath& startup_trace_file() const { 144 const base::FilePath& startup_trace_file() const {
142 return startup_trace_file_; 145 return startup_trace_file_;
143 } 146 }
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 scoped_refptr<SaveFileManager> save_file_manager_; 295 scoped_refptr<SaveFileManager> save_file_manager_;
293 296
294 // DO NOT add members here. Add them to the right categories above. 297 // DO NOT add members here. Add them to the right categories above.
295 298
296 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); 299 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop);
297 }; 300 };
298 301
299 } // namespace content 302 } // namespace content
300 303
301 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ 304 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
OLDNEW
« no previous file with comments | « content/browser/DEPS ('k') | content/browser/renderer_host/render_process_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698