summaryrefslogtreecommitdiffstats
path: root/net/tools/flip_server/other_defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/tools/flip_server/other_defines.h')
-rw-r--r--net/tools/flip_server/other_defines.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/net/tools/flip_server/other_defines.h b/net/tools/flip_server/other_defines.h
deleted file mode 100644
index dda2151..0000000
--- a/net/tools/flip_server/other_defines.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_TOOLS_FLIP_SERVER_OTHER_DEFINES
-#define NET_TOOLS_FLIP_SERVER_OTHER_DEFINES
-#pragma once
-
-class NullStream {
- public:
- NullStream() {}
- template <typename T>
- NullStream operator<<(T t) { return *this;}
-};
-
-#define VLOG(X) NullStream()
-#define DVLOG(X) NullStream()
-
-
-#endif // NET_TOOLS_FLIP_SERVER_OTHER_DEFINES
-