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

Unified Diff: cc/animation/layer_animation_controller.cc

Issue 1152983004: Move ObserverList to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « base/observer_list_threadsafe.h ('k') | chrome/browser/extensions/api/chrome_extensions_api_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/layer_animation_controller.cc
diff --git a/cc/animation/layer_animation_controller.cc b/cc/animation/layer_animation_controller.cc
index d148a491f80a8f8c237be3e51f7d5ccc92573d59..e6e720f2f230e373505274baf918cff3690fb4c7 100644
--- a/cc/animation/layer_animation_controller.cc
+++ b/cc/animation/layer_animation_controller.cc
@@ -975,7 +975,7 @@ void LayerAnimationController::NotifyObserversOpacityAnimated(
bool notify_active_observers,
bool notify_pending_observers) {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
LayerAnimationValueObserver* obs;
while ((obs = it.GetNext()) != nullptr) {
@@ -992,7 +992,7 @@ void LayerAnimationController::NotifyObserversTransformAnimated(
bool notify_active_observers,
bool notify_pending_observers) {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
LayerAnimationValueObserver* obs;
while ((obs = it.GetNext()) != nullptr) {
@@ -1009,7 +1009,7 @@ void LayerAnimationController::NotifyObserversFilterAnimated(
bool notify_active_observers,
bool notify_pending_observers) {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
LayerAnimationValueObserver* obs;
while ((obs = it.GetNext()) != nullptr) {
@@ -1026,7 +1026,7 @@ void LayerAnimationController::NotifyObserversScrollOffsetAnimated(
bool notify_active_observers,
bool notify_pending_observers) {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
LayerAnimationValueObserver* obs;
while ((obs = it.GetNext()) != nullptr) {
@@ -1046,7 +1046,7 @@ void LayerAnimationController::NotifyObserversAnimationWaitingForDeletion() {
bool LayerAnimationController::HasValueObserver() {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
return it.GetNext() != nullptr;
}
@@ -1055,7 +1055,7 @@ bool LayerAnimationController::HasValueObserver() {
bool LayerAnimationController::HasActiveValueObserver() {
if (value_observers_.might_have_observers()) {
- ObserverListBase<LayerAnimationValueObserver>::Iterator it(
+ base::ObserverListBase<LayerAnimationValueObserver>::Iterator it(
&value_observers_);
LayerAnimationValueObserver* obs;
while ((obs = it.GetNext()) != nullptr)
« no previous file with comments | « base/observer_list_threadsafe.h ('k') | chrome/browser/extensions/api/chrome_extensions_api_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698