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

Unified Diff: src/platform/window_manager/layout_manager.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/layout_manager.cc
diff --git a/src/platform/window_manager/layout_manager.cc b/src/platform/window_manager/layout_manager.cc
index b8a2425fe95fa7535e826a53545bb100298d36f4..6db3886195999fb7f08fc88822c7fa9c68ce4f13 100644
--- a/src/platform/window_manager/layout_manager.cc
+++ b/src/platform/window_manager/layout_manager.cc
@@ -31,7 +31,7 @@ DEFINE_bool(lm_honor_window_size_hints, false,
"size increment, etc.) instead of automatically making it fill the "
"screen");
-namespace chromeos {
+namespace window_manager {
using std::map;
using std::vector;
@@ -40,6 +40,8 @@ using std::make_pair;
using std::list;
using std::tr1::shared_ptr;
+using chromeos::NewPermanentCallback;
+
// Amount of padding that should be used between windows in overview mode.
static const int kWindowPadding = 10;
@@ -1700,4 +1702,4 @@ void LayoutManager::SendDeleteRequestToActiveWindow() {
active_toplevel_->win()->SendDeleteRequest(wm_->GetCurrentTimeFromServer());
}
-} // namespace chromeos
+} // namespace window_manager

Powered by Google App Engine
This is Rietveld 408576698