Supervised user import: Listen for profile creation/deletion
[chromium-blink-merge.git] / media / formats / mp4 / rcheck.h
blobfb0f8f27d4ec66f965f18609bcbaacd50186c7bf
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_FORMATS_MP4_RCHECK_H_
6 #define MEDIA_FORMATS_MP4_RCHECK_H_
8 #include "base/logging.h"
10 #define RCHECK(x) \
11 do { \
12 if (!(x)) { \
13 DLOG(ERROR) << "Failure while parsing MP4: " << #x; \
14 return false; \
15 } \
16 } while (0)
18 #endif // MEDIA_FORMATS_MP4_RCHECK_H_