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

Side by Side Diff: sandbox/linux/seccomp/debug.cc

Issue 672011: Added missing copyright header. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « sandbox/linux/seccomp/debug.h ('k') | sandbox/linux/seccomp/exit.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 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.
4
1 #ifndef NDEBUG 5 #ifndef NDEBUG
2 6
3 #include "debug.h" 7 #include "debug.h"
4 8
5 namespace playground { 9 namespace playground {
6 10
7 bool Debug::enabled_; 11 bool Debug::enabled_;
8 int Debug::numSyscallNames_; 12 int Debug::numSyscallNames_;
9 const char **Debug::syscallNames_; 13 const char **Debug::syscallNames_;
10 std::map<int, std::string> Debug::syscallNamesMap_; 14 std::map<int, std::string> Debug::syscallNamesMap_;
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 *s-- = *start; 220 *s-- = *start;
217 *start++ = ch; 221 *start++ = ch;
218 } 222 }
219 223
220 return ret; 224 return ret;
221 } 225 }
222 226
223 } // namespace 227 } // namespace
224 228
225 #endif // NDEBUG 229 #endif // NDEBUG
OLDNEW
« no previous file with comments | « sandbox/linux/seccomp/debug.h ('k') | sandbox/linux/seccomp/exit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698