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

Unified Diff: ash/aura/wm_window_aura.cc

Issue 2502413005: Use aura::WindowProperty for title and name strings. (Closed)
Patch Set: Update comment Created 4 years, 1 month 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/ash_touch_exploration_manager_chromeos.cc ('k') | ash/display/root_window_transformers_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/aura/wm_window_aura.cc
diff --git a/ash/aura/wm_window_aura.cc b/ash/aura/wm_window_aura.cc
index ac850aa00ca98e1860816e4af413187743622985..9e26b5ed4f3cb70fb496d6717d613ed7f8612d5f 100644
--- a/ash/aura/wm_window_aura.cc
+++ b/ash/aura/wm_window_aura.cc
@@ -159,7 +159,7 @@ void WmWindowAura::SetName(const char* name) {
}
std::string WmWindowAura::GetName() const {
- return window_->name();
+ return window_->GetName();
}
void WmWindowAura::SetTitle(const base::string16& title) {
@@ -167,7 +167,7 @@ void WmWindowAura::SetTitle(const base::string16& title) {
}
base::string16 WmWindowAura::GetTitle() const {
- return window_->title();
+ return window_->GetTitle();
}
void WmWindowAura::SetShellWindowId(int id) {
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/display/root_window_transformers_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698