Chromium Code Reviews| Index: blimp/common/protocol_version.cc |
| diff --git a/blimp/net/common.cc b/blimp/common/protocol_version.cc |
| similarity index 61% |
| copy from blimp/net/common.cc |
| copy to blimp/common/protocol_version.cc |
| index 1663b300534f03ff610710b6d2630a5f7c04c427..8b0e7ea249e3cd6577c0a49d0dd811cddfbd6bbe 100644 |
| --- a/blimp/net/common.cc |
| +++ b/blimp/common/protocol_version.cc |
| @@ -2,11 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "blimp/net/common.h" |
| +#include "blimp/common/protocol_version.h" |
| namespace blimp { |
| -const size_t kMaxPacketPayloadSizeBytes = 1 << 16; // 64KB |
| -const size_t kPacketHeaderSizeBytes = 4; |
| +const int kProtocolVersion = 0; |
|
Wez
2015/12/09 02:30:03
Do we need a cc file for this, or could we remove
haibinlu
2015/12/09 19:40:34
removed cc file.
|
| } // namespace blimp |