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

Unified Diff: src/platform/window_manager/util_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/util_test.cc
diff --git a/src/platform/window_manager/util_test.cc b/src/platform/window_manager/util_test.cc
index 95370ed25e4ea7ada6f32d98e61f3fe63ff22137..ac1150c8438ae4ddac0aed8257987efa4ade31ff 100644
--- a/src/platform/window_manager/util_test.cc
+++ b/src/platform/window_manager/util_test.cc
@@ -13,7 +13,9 @@
DEFINE_bool(logtostderr, false,
"Print debugging messages to stderr (suppressed otherwise)");
-namespace chromeos {
+namespace window_manager {
+
+using chromeos::SplitString;
class UtilTest : public ::testing::Test {
protected:
@@ -141,8 +143,8 @@ TEST_F(UtilTest, ByteMap) {
width * height);
}
-} // 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