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

Unified Diff: src/platform/window_manager/shadow_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/shadow_test.cc
diff --git a/src/platform/window_manager/shadow_test.cc b/src/platform/window_manager/shadow_test.cc
index b57a7c128ba28d5fe1dab2dc8f06e238ac35f745..d37f077db575663e1562cd02ec94389889de578e 100644
--- a/src/platform/window_manager/shadow_test.cc
+++ b/src/platform/window_manager/shadow_test.cc
@@ -14,7 +14,7 @@
DEFINE_bool(logtostderr, false,
"Print debugging messages to stderr (suppressed otherwise)");
-namespace chromeos {
+namespace window_manager {
class ShadowTest : public ::testing::Test {
protected:
@@ -34,8 +34,8 @@ TEST_F(ShadowTest, Basic) {
// TODO: Check that the individual images are positioned correctly.
}
-} // 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