| Index: base/big_endian.cc
|
| diff --git a/net/base/big_endian.cc b/base/big_endian.cc
|
| similarity index 96%
|
| rename from net/base/big_endian.cc
|
| rename to base/big_endian.cc
|
| index 888cf35c6d610d9f74a5f79bc796230bc803b4e2..26239187a7f4b4c1c2eebdeaaa8dd4a8e62c1903 100644
|
| --- a/net/base/big_endian.cc
|
| +++ b/base/big_endian.cc
|
| @@ -2,11 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "net/base/big_endian.h"
|
| +#include "base/big_endian.h"
|
|
|
| #include "base/strings/string_piece.h"
|
|
|
| -namespace net {
|
| +namespace base {
|
|
|
| BigEndianReader::BigEndianReader(const void* buf, size_t len)
|
| : ptr_(reinterpret_cast<const char*>(buf)), end_(ptr_ + len) {}
|
| @@ -94,5 +94,4 @@ bool BigEndianWriter::WriteU32(uint32 value) {
|
| return Write(value);
|
| }
|
|
|
| -} // namespace net
|
| -
|
| +} // namespace base
|
|
|