summaryrefslogtreecommitdiffstats
path: root/chromium/media/mp4/rcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/mp4/rcheck.h')
-rw-r--r--chromium/media/mp4/rcheck.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/chromium/media/mp4/rcheck.h b/chromium/media/mp4/rcheck.h
deleted file mode 100644
index 81650560678..00000000000
--- a/chromium/media/mp4/rcheck.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (c) 2012 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 MEDIA_MP4_RCHECK_H_
-#define MEDIA_MP4_RCHECK_H_
-
-#include "base/logging.h"
-
-#define RCHECK(x) \
- do { \
- if (!(x)) { \
- DLOG(ERROR) << "Failure while parsing MP4: " << #x; \
- return false; \
- } \
- } while (0)
-
-#endif // MEDIA_MP4_RCHECK_H_