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

Unified Diff: ui/aura/window.cc

Issue 8621003: aura: Rename OnPropertyChanged to OnWindowPropertyChanged. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | « no previous file | ui/aura/window_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window.cc
diff --git a/ui/aura/window.cc b/ui/aura/window.cc
index 334605ceef0f806a8e570b11708ae533cdf84363..70040fa59478b2595c70c445e5a7d3efd2bc7724 100644
--- a/ui/aura/window.cc
+++ b/ui/aura/window.cc
@@ -410,8 +410,8 @@ void Window::SetProperty(const char* name, void* value) {
prop_map_[name] = value;
else
prop_map_.erase(name);
- FOR_EACH_OBSERVER(WindowObserver, observers_,
- OnPropertyChanged(this, name, old));
+ FOR_EACH_OBSERVER(
+ WindowObserver, observers_, OnWindowPropertyChanged(this, name, old));
}
void Window::SetIntProperty(const char* name, int value) {
« no previous file with comments | « no previous file | ui/aura/window_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698