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

Side by Side Diff: ipc/ipc_channel_common.cc

Issue 2316963005: Reworks Channel pausing behavior (Closed)
Patch Set: 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 | « ipc/ipc_channel.h ('k') | ipc/ipc_channel_mojo.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "ipc/ipc_channel.h" 6 #include "ipc/ipc_channel.h"
7 #include "ipc/ipc_channel_mojo.h" 7 #include "ipc/ipc_channel_mojo.h"
8 #include "mojo/public/cpp/system/message_pipe.h" 8 #include "mojo/public/cpp/system/message_pipe.h"
9 9
10 namespace IPC { 10 namespace IPC {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 handle1->mojo_handle = message_pipe.handle1.release(); 73 handle1->mojo_handle = message_pipe.handle1.release();
74 } 74 }
75 75
76 Channel::~Channel() { 76 Channel::~Channel() {
77 } 77 }
78 78
79 Channel::AssociatedInterfaceSupport* Channel::GetAssociatedInterfaceSupport() { 79 Channel::AssociatedInterfaceSupport* Channel::GetAssociatedInterfaceSupport() {
80 return nullptr; 80 return nullptr;
81 } 81 }
82 82
83 bool Channel::ConnectPaused() { 83 void Channel::Pause() { NOTREACHED(); }
84 NOTREACHED();
85 return false;
86 }
87 84
88 void Channel::Unpause(bool flush) { NOTREACHED(); } 85 void Channel::Unpause(bool flush) { NOTREACHED(); }
89 86
90 void Channel::Flush() { NOTREACHED(); } 87 void Channel::Flush() { NOTREACHED(); }
91 88
92 bool Channel::IsSendThreadSafe() const { 89 bool Channel::IsSendThreadSafe() const {
93 return false; 90 return false;
94 } 91 }
95 92
96 void Channel::OnSetAttachmentBrokerEndpoint() { 93 void Channel::OnSetAttachmentBrokerEndpoint() {
97 CHECK(!did_start_connect_); 94 CHECK(!did_start_connect_);
98 } 95 }
99 96
100 void Channel::WillConnect() { 97 void Channel::WillConnect() {
101 did_start_connect_ = true; 98 did_start_connect_ = true;
102 } 99 }
103 100
104 } // namespace IPC 101 } // namespace IPC
105 102
OLDNEW
« no previous file with comments | « ipc/ipc_channel.h ('k') | ipc/ipc_channel_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698