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

Unified Diff: src/platform/window_manager/util.h

Issue 501116: wm: Update namespace and header define guards. (Closed)
Patch Set: move using directive inside of namespace for consistency 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
Index: src/platform/window_manager/util.h
diff --git a/src/platform/window_manager/util.h b/src/platform/window_manager/util.h
index 8d99ef3b6e27a2d654bf7bfe14b8d07f1420a33e..fd6ee4f712b8265c5d3311eb7feee33691db50be 100644
--- a/src/platform/window_manager/util.h
+++ b/src/platform/window_manager/util.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef __PLATFORM_WINDOW_MANAGER_UTIL_H__
-#define __PLATFORM_WINDOW_MANAGER_UTIL_H__
+#ifndef WINDOW_MANAGER_UTIL_H_
+#define WINDOW_MANAGER_UTIL_H_
#include <ctime>
#include <list>
@@ -16,7 +16,7 @@
typedef unsigned int uint;
-namespace chromeos {
+namespace window_manager {
// Stacker maintains an ordering of objects (e.g. windows) in which changes
// can be made in faster-than-linear time.
@@ -202,6 +202,6 @@ static std::string XidStr(unsigned long xid) {
return StringPrintf("0x%lx", xid);
}
-} // namespace chromeos
+} // namespace window_manager
-#endif // __UTIL_H__
+#endif

Powered by Google App Engine
This is Rietveld 408576698