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

Side by Side Diff: blimp/engine/app/blimp_browser_main_parts.cc

Issue 2256363003: Clean up thread handling in Blimp browser tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wez feedback Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | blimp/engine/browser_tests/blimp_browser_test.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "blimp/engine/app/blimp_browser_main_parts.h" 5 #include "blimp/engine/app/blimp_browser_main_parts.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 SettingsManager* BlimpBrowserMainParts::GetSettingsManager() { 63 SettingsManager* BlimpBrowserMainParts::GetSettingsManager() {
64 return settings_manager_.get(); 64 return settings_manager_.get();
65 } 65 }
66 66
67 BlobChannelSender* BlimpBrowserMainParts::GetBlobChannelSender() { 67 BlobChannelSender* BlimpBrowserMainParts::GetBlobChannelSender() {
68 return engine_session_->blob_channel_sender(); 68 return engine_session_->blob_channel_sender();
69 } 69 }
70 70
71 BlobChannelService* BlimpBrowserMainParts::GetBlobChannelService() { 71 BlobChannelService* BlimpBrowserMainParts::GetBlobChannelService() {
72 return engine_session_->blob_channel_service(); 72 return engine_session_->GetBlobChannelService();
73 } 73 }
74 74
75 BlimpEngineSession* BlimpBrowserMainParts::GetBlimpEngineSession() { 75 BlimpEngineSession* BlimpBrowserMainParts::GetBlimpEngineSession() {
76 return engine_session_.get(); 76 return engine_session_.get();
77 } 77 }
78 78
79 } // namespace engine 79 } // namespace engine
80 } // namespace blimp 80 } // namespace blimp
OLDNEW
« no previous file with comments | « no previous file | blimp/engine/browser_tests/blimp_browser_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698