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

Unified Diff: chrome/browser/memory/tab_manager_delegate_chromeos.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
Index: chrome/browser/memory/tab_manager_delegate_chromeos.cc
diff --git a/chrome/browser/memory/tab_manager_delegate_chromeos.cc b/chrome/browser/memory/tab_manager_delegate_chromeos.cc
index 1abd0d1636841788ed44e3889662d25db76358b4..75100d0cf6fe354655b1a15802013536f0a99b0f 100644
--- a/chrome/browser/memory/tab_manager_delegate_chromeos.cc
+++ b/chrome/browser/memory/tab_manager_delegate_chromeos.cc
@@ -73,7 +73,7 @@ aura::client::ActivationClient* GetActivationClient() {
// Checks if a window renders ARC apps.
bool IsArcWindow(aura::Window* window) {
- if (!window || window->name() != kExoShellSurfaceWindowName)
+ if (!window || window->GetName() != kExoShellSurfaceWindowName)
return false;
std::string application_id = exo::ShellSurface::GetApplicationId(window);
return base::StartsWith(application_id, kArcProcessNamePrefix,

Powered by Google App Engine
This is Rietveld 408576698