Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: webrtc/base/flags.h

Issue 2976293002: Remove remains of webrtc/base (Closed)
Patch Set: Add README.md Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/firewallsocketserver.h ('k') | webrtc/base/format_macros.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « webrtc/base/firewallsocketserver.h ('k') | webrtc/base/format_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698