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

Side by Side Diff: src/platform-posix.cc

Issue 115756: Split nested namespaces declaration in two lines in accordance with C++ Style Guide. (Closed)
Patch Set: Created 11 years, 7 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
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 29 matching lines...) Expand all
40 40
41 #include <arpa/inet.h> 41 #include <arpa/inet.h>
42 #include <netinet/in.h> 42 #include <netinet/in.h>
43 #include <netdb.h> 43 #include <netdb.h>
44 44
45 #include "v8.h" 45 #include "v8.h"
46 46
47 #include "platform.h" 47 #include "platform.h"
48 48
49 49
50 namespace v8 { namespace internal { 50 namespace v8 {
51 namespace internal {
51 52
52 53
53 // ---------------------------------------------------------------------------- 54 // ----------------------------------------------------------------------------
54 // POSIX date/time support. 55 // POSIX date/time support.
55 // 56 //
56 57
57 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { 58 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
58 struct rusage usage; 59 struct rusage usage;
59 60
60 if (getrusage(RUSAGE_SELF, &usage) < 0) return -1; 61 if (getrusage(RUSAGE_SELF, &usage) < 0) return -1;
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 return ntohl(value); 342 return ntohl(value);
342 } 343 }
343 344
344 345
345 Socket* OS::CreateSocket() { 346 Socket* OS::CreateSocket() {
346 return new POSIXSocket(); 347 return new POSIXSocket();
347 } 348 }
348 349
349 350
350 } } // namespace v8::internal 351 } } // namespace v8::internal
OLDNEW
« src/accessors.h ('K') | « src/platform-nullos.cc ('k') | src/platform-win32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698