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

Unified Diff: ash/wm/workspace/workspace_layout_manager.cc

Issue 10384212: fix property linkage warnings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 7 months 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
« no previous file with comments | « ash/wm/window_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/workspace/workspace_layout_manager.cc
diff --git a/ash/wm/workspace/workspace_layout_manager.cc b/ash/wm/workspace/workspace_layout_manager.cc
index a7e8a53faef5d3a94a5fb34902c63e811ae8d837..159fe3b6df9b49167854227ff7644051eaff9f86 100644
--- a/ash/wm/workspace/workspace_layout_manager.cc
+++ b/ash/wm/workspace/workspace_layout_manager.cc
@@ -5,8 +5,8 @@
#include "ash/wm/workspace/workspace_layout_manager.h"
#include "ash/screen_ash.h"
-#include "ash/wm/property_util.h"
#include "ash/wm/window_util.h"
+#include "ash/wm/window_properties.h"
#include "ash/wm/workspace/workspace.h"
#include "ash/wm/workspace/workspace_manager.h"
#include "ash/wm/workspace/workspace_window_resizer.h"
@@ -15,7 +15,6 @@
#include "ui/aura/root_window.h"
#include "ui/aura/window.h"
#include "ui/aura/window_observer.h"
-#include "ui/aura/window_property.h"
#include "ui/base/ui_base_types.h"
#include "ui/gfx/rect.h"
#include "ui/views/widget/native_widget_aura.h"
@@ -88,7 +87,7 @@ void WorkspaceLayoutManager::OnWindowPropertyChanged(aura::Window* window,
const void* key,
intptr_t old) {
BaseLayoutManager::OnWindowPropertyChanged(window, key, old);
- if (key == ash::kWindowTrackedByWorkspacePropKey &&
+ if (key == ash::internal::kWindowTrackedByWorkspaceKey &&
ash::GetTrackedByWorkspace(window)) {
// We currently don't need to support transitioning from true to false, so
// we ignore it.
« no previous file with comments | « ash/wm/window_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698