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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/mount_dev.cc

Issue 19673003: [NaCl SDK] Consistent use of copyright header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 // found in the LICENSE file.
4 */ 4
5 #if defined(WIN32) 5 #if defined(WIN32)
6 #define _CRT_RAND_S 6 #define _CRT_RAND_S
7 #endif 7 #endif
8 8
9 #include <errno.h> 9 #include <errno.h>
10 #include <fcntl.h> 10 #include <fcntl.h>
11 #include <pthread.h> 11 #include <pthread.h>
12 #include <string.h> 12 #include <string.h>
13 13
14 #include <deque> 14 #include <deque>
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 INITIALIZE_DEV_NODE_1("/console2", ConsoleNode, PP_LOGLEVEL_WARNING); 406 INITIALIZE_DEV_NODE_1("/console2", ConsoleNode, PP_LOGLEVEL_WARNING);
407 INITIALIZE_DEV_NODE_1("/console3", ConsoleNode, PP_LOGLEVEL_ERROR); 407 INITIALIZE_DEV_NODE_1("/console3", ConsoleNode, PP_LOGLEVEL_ERROR);
408 INITIALIZE_DEV_NODE("/tty", TtyNode); 408 INITIALIZE_DEV_NODE("/tty", TtyNode);
409 INITIALIZE_DEV_NODE_1("/stdin", RealNode, 0); 409 INITIALIZE_DEV_NODE_1("/stdin", RealNode, 0);
410 INITIALIZE_DEV_NODE_1("/stdout", RealNode, 1); 410 INITIALIZE_DEV_NODE_1("/stdout", RealNode, 1);
411 INITIALIZE_DEV_NODE_1("/stderr", RealNode, 2); 411 INITIALIZE_DEV_NODE_1("/stderr", RealNode, 2);
412 412
413 return 0; 413 return 0;
414 } 414 }
415 415
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698