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

Unified Diff: ash/root_window_settings.cc

Issue 23591028: [Cleanup] fix macro, comments and unused includes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update comment Created 7 years, 3 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/root_window_settings.h ('k') | chrome/browser/ui/ash/chrome_shell_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/root_window_settings.cc
diff --git a/ash/root_window_settings.cc b/ash/root_window_settings.cc
index a5e396898446738ae141cacd575481ea99b55caa..06198ca1562fb03573e0762f4498211d3b7b5306 100644
--- a/ash/root_window_settings.cc
+++ b/ash/root_window_settings.cc
@@ -23,9 +23,9 @@ RootWindowSettings::RootWindowSettings()
}
RootWindowSettings* InitRootWindowSettings(aura::RootWindow* root) {
- RootWindowSettings* property = new RootWindowSettings();
- root->SetProperty(kRootWindowSettingsKey, property);
- return property;
+ RootWindowSettings* settings = new RootWindowSettings();
+ root->SetProperty(kRootWindowSettingsKey, settings);
+ return settings;
}
RootWindowSettings* GetRootWindowSettings(aura::RootWindow* root) {
« no previous file with comments | « ash/root_window_settings.h ('k') | chrome/browser/ui/ash/chrome_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698