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

Unified Diff: chrome/browser/chromeos/pipe_reader.h

Issue 341044: Move chromeos code to namespace chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/pipe_reader.h
===================================================================
--- chrome/browser/chromeos/pipe_reader.h (revision 30488)
+++ chrome/browser/chromeos/pipe_reader.h (working copy)
@@ -7,13 +7,16 @@
#include <fcntl.h>
#include <stdio.h>
-#include <string>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
+#include <string>
+
#include "base/basictypes.h"
+namespace chromeos {
+
// Given a named pipe, this class reads data from it and returns it as a string.
// Currently, we are sending login cookies from the Chrome OS login manager to
// Chrome over a named Unix pipe. We want to replace this with DBus, but
@@ -48,4 +51,6 @@
DISALLOW_COPY_AND_ASSIGN(PipeReader);
};
+} // namespace chromeos
+
#endif // CHROME_BROWSER_CHROMEOS_PIPE_READER_H_

Powered by Google App Engine
This is Rietveld 408576698