diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-24 23:05:05 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-24 23:05:05 +0000 |
commit | 53a4597d56e4ca47d70a0f72901d005f0019aca3 (patch) | |
tree | 794a2e9af105a28cfacf7b9ae77d7852985bd87c /remoting/base/decoder.h | |
parent | febe94524deeb320646d623cd91ed87e1db67a7b (diff) | |
download | chromium_src-53a4597d56e4ca47d70a0f72901d005f0019aca3.zip chromium_src-53a4597d56e4ca47d70a0f72901d005f0019aca3.tar.gz chromium_src-53a4597d56e4ca47d70a0f72901d005f0019aca3.tar.bz2 |
Rename (Host|Client)Message to Chromoting(Host|Client)Message.
Rename HostMessage and ClientMessage to Chromoting{Host|Client}Message to
avoid conflicts with messages in X11.
Actually, only ClientMessage needs to be changed due to conflict, but HostMessage is changed to keep the names consistent.
BUG=none
TEST=remoting unittests
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=57112
Review URL: http://codereview.chromium.org/3161034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57255 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base/decoder.h')
-rw-r--r-- | remoting/base/decoder.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/remoting/base/decoder.h b/remoting/base/decoder.h index eb7f7ed..75ffa03 100644 --- a/remoting/base/decoder.h +++ b/remoting/base/decoder.h @@ -24,7 +24,7 @@ typedef std::vector<gfx::Rect> UpdatedRects; // Sequence of actions with a decoder is as follows: // // 1. BeginDecode(PartialDecodeDone, DecodeDone, VideoFrame) -// 2. PartialDecode(HostMessage) +// 2. PartialDecode(ChromotingHostMessage) // ... // 3. EndDecode() // @@ -57,15 +57,15 @@ class Decoder { Task* partial_decode_done, Task* decode_done) = 0; - // Give a HostMessage that contains the update stream packet that contains - // the encoded data to the decoder. + // Give a ChromotingHostMessage that contains the update stream packet that + // contains the encoded data to the decoder. // The decoder will own |message| and is responsible for deleting it. // // If the decoder has written something into |frame|, // |partial_decode_done_| is called with |frame| and updated regions. // Return true if the decoder can accept |message| and decode it. // - // HostMessage returned by this method will contain a + // ChromotingHostMessage returned by this method will contain a // UpdateStreamPacketMessage. // This message will contain either: // 1. UpdateStreamBeginRect @@ -74,7 +74,7 @@ class Decoder { // // See remoting/base/protocol/chromotocol.proto for more information about // these messages. - virtual bool PartialDecode(HostMessage* message) = 0; + virtual bool PartialDecode(ChromotingHostMessage* message) = 0; // Notify the decoder that we have received the last update stream packet. // If the decoding of the update stream has completed |decode_done_| is |