[M73 Dev][Tizen] Fix compilation errors for TV profile
[platform/framework/web/chromium-efl.git] / base / observer_list_types.cc
1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/observer_list_types.h"
6
7 namespace base {
8
9 CheckedObserver::CheckedObserver() : factory_(this) {}
10 CheckedObserver::~CheckedObserver() = default;
11
12 bool CheckedObserver::IsInObserverList() const {
13   return factory_.HasWeakPtrs();
14 }
15
16 }  // namespace base