~osomon/oxide/bug1290821

« back to all changes in this revision

Viewing changes to shared/browser/oxide_web_preferences_observer.cc

  • Committer: Chris Coulson
  • Date: 2014-02-20 14:42:23 UTC
  • Revision ID: chris.coulson@canonical.com-20140220144223-cm4jsx5sfhm1movd
Implement WebPreferenceObserver, as this will make testing easier. Also, get rid of the default preferences hack and don't lazy initialize the default WebPreferences

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2013 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#include "oxide_web_preferences_observer.h"
 
19
 
 
20
#include "base/logging.h"
 
21
 
 
22
#include "oxide_web_preferences.h"
 
23
 
 
24
namespace oxide {
 
25
 
 
26
void WebPreferencesObserver::OnWebPreferencesDestruction() {
 
27
  DCHECK(web_preferences_);
 
28
  web_preferences_ = NULL;
 
29
  WebPreferencesDestroyed();
 
30
}
 
31
 
 
32
WebPreferencesObserver::WebPreferencesObserver() :
 
33
    web_preferences_(NULL) {}
 
34
 
 
35
void WebPreferencesObserver::Observe(WebPreferences* preferences) {
 
36
  if (web_preferences_ == preferences) {
 
37
    return;
 
38
  }
 
39
  if (web_preferences_) {
 
40
    web_preferences_->RemoveObserver(this);
 
41
  }
 
42
  web_preferences_ = preferences;
 
43
  if (web_preferences_) {
 
44
    web_preferences_->AddObserver(this);
 
45
  }
 
46
}
 
47
 
 
48
WebPreferencesObserver::~WebPreferencesObserver() {
 
49
  if (web_preferences_) {
 
50
    web_preferences_->RemoveObserver(this);
 
51
  }
 
52
}
 
53
 
 
54
} // namespace oxide