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

Unified Diff: base/logging.h

Issue 519020: Moved logging for NaCl environment from gpu/command_buffer/common/logging.h t... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/nacl_logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/logging.h
===================================================================
--- base/logging.h (revision 35219)
+++ base/logging.h (working copy)
@@ -5,6 +5,10 @@
#ifndef BASE_LOGGING_H_
#define BASE_LOGGING_H_
+#ifdef __native_client__
+#include "base/nacl_logging.h"
+#else
+
#include <string>
#include <cstring>
#include <sstream>
@@ -838,4 +842,5 @@
} while(0)
#endif
+#endif // __native_client__
#endif // BASE_LOGGING_H_
« no previous file with comments | « no previous file | base/nacl_logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698