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

Unified Diff: Source/core/editing/VisibleSelection.cpp

Issue 1309413006: Move VisibleSelection::ChangeObserver out from VisibleSelection class (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-09-04T15:50:42 Created 5 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 | « Source/core/editing/VisibleSelection.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/VisibleSelection.cpp
diff --git a/Source/core/editing/VisibleSelection.cpp b/Source/core/editing/VisibleSelection.cpp
index be4e26ef18a8c389c49ce7d216a7914a601bd29e..4f780ba57ce27365d0f3cb6e760583a6f71a8b6f 100644
--- a/Source/core/editing/VisibleSelection.cpp
+++ b/Source/core/editing/VisibleSelection.cpp
@@ -1047,15 +1047,15 @@ Node* VisibleSelection::nonBoundaryShadowTreeRootNode() const
return start().anchorNode() && !start().anchorNode()->isShadowRoot() ? start().anchorNode()->nonBoundaryShadowTreeRootNode() : 0;
}
-VisibleSelection::ChangeObserver::ChangeObserver()
+VisibleSelectionChangeObserver::VisibleSelectionChangeObserver()
{
}
-VisibleSelection::ChangeObserver::~ChangeObserver()
+VisibleSelectionChangeObserver::~VisibleSelectionChangeObserver()
{
}
-void VisibleSelection::setChangeObserver(ChangeObserver& observer)
+void VisibleSelection::setChangeObserver(VisibleSelectionChangeObserver& observer)
{
ASSERT(!m_changeObserver);
m_changeObserver = &observer;
« no previous file with comments | « Source/core/editing/VisibleSelection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698