| Index: net/quic/core/frames/quic_frame.cc
|
| diff --git a/net/quic/core/frames/quic_frame.cc b/net/quic/core/frames/quic_frame.cc
|
| index 840bb6ecb4a039a4c5a4c1c36d0f4f4c77d45e42..72d2e41fb09801fbbd30cde471959375986c2c67 100644
|
| --- a/net/quic/core/frames/quic_frame.cc
|
| +++ b/net/quic/core/frames/quic_frame.cc
|
| @@ -3,7 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "net/quic/core/frames/quic_frame.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| using base::StringPiece;
|
| using std::string;
|
| @@ -153,7 +152,7 @@
|
| break;
|
| }
|
| default: {
|
| - QUIC_LOG(ERROR) << "Unknown frame type: " << frame.type;
|
| + LOG(ERROR) << "Unknown frame type: " << frame.type;
|
| break;
|
| }
|
| }
|
|
|