OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2006 The WebRTC Project Authors. All rights reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 |
| 12 // Originally comes from shared/commandlineflags/flags.h |
| 13 |
| 14 // Flags are defined and declared using DEFINE_xxx and DECLARE_xxx macros, |
| 15 // where xxx is the flag type. Flags are referred to via FLAG_yyy, |
| 16 // where yyy is the flag name. For intialization and iteration of flags, |
| 17 // see the FlagList class. For full programmatic access to any |
| 18 // flag, see the Flag class. |
| 19 // |
| 20 // The implementation only relies and basic C++ functionality |
| 21 // and needs no special library or STL support. |
| 22 |
| 23 #ifndef WEBRTC_BASE_FLAGS_H_ |
| 24 #define WEBRTC_BASE_FLAGS_H_ |
| 25 |
| 26 |
| 27 // This header is deprecated and is just left here temporarily during |
| 28 // refactoring. See https://bugs.webrtc.org/7634 for more details. |
| 29 #include "webrtc/rtc_base/flags.h" |
| 30 |
| 31 #endif // SHARED_COMMANDLINEFLAGS_FLAGS_H_ |
OLD | NEW |