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

Unified Diff: src/platform/window_manager/window_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_test.cc
diff --git a/src/platform/window_manager/window_test.cc b/src/platform/window_manager/window_test.cc
index 6eb20c15c8c6a15dee4e49477bddf85113d014b6..87d98a2a2cc396270e1a30c18ed6e0cdbf78a6dc 100644
--- a/src/platform/window_manager/window_test.cc
+++ b/src/platform/window_manager/window_test.cc
@@ -18,7 +18,7 @@
DEFINE_bool(logtostderr, false,
"Print debugging messages to stderr (suppressed otherwise)");
-namespace chromeos {
+namespace window_manager {
class WindowTest : public BasicWindowManagerTest {};
@@ -426,8 +426,8 @@ TEST_F(WindowTest, Shape) {
EXPECT_EQ(shadow_opacity, win.shadow()->opacity());
}
-} // 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