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

Unified Diff: src/platform/window_manager/window_manager_test.cc

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/window_manager_test.cc
diff --git a/src/platform/window_manager/window_manager_test.cc b/src/platform/window_manager/window_manager_test.cc
index efcf1f325e40df6105a9e82d66f81d30fde1796e..5928e1033103fda6ec91be7ef46def7d33fe8036 100644
--- a/src/platform/window_manager/window_manager_test.cc
+++ b/src/platform/window_manager/window_manager_test.cc
@@ -23,7 +23,7 @@
DEFINE_bool(logtostderr, false,
"Print debugging messages to stderr (suppressed otherwise)");
-namespace chromeos {
+namespace window_manager {
class WindowManagerTest : public BasicWindowManagerTest {};
@@ -763,8 +763,8 @@ TEST_F(WindowManagerTest, ClientListProperties) {
TestIntArrayProperty(root_xid, stacking_atom, 0);
}
-} // namespace chromeos
+} // namespace window_manager
int main(int argc, char **argv) {
- return chromeos::InitAndRunTests(&argc, argv, &FLAGS_logtostderr);
+ return window_manager::InitAndRunTests(&argc, argv, &FLAGS_logtostderr);
}

Powered by Google App Engine
This is Rietveld 408576698