OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 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 "chrome/browser/protector/setting_change.h" | |
6 | |
7 namespace protector { | |
8 | |
9 SettingChange::SettingChange() { | |
10 } | |
11 | |
12 SettingChange::~SettingChange() { | |
13 } | |
14 | |
15 bool SettingChange::Init(Protector* protector) { | |
16 return true; | |
17 } | |
18 | |
19 void SettingChange::Apply(Protector* protector) { | |
20 } | |
21 | |
22 void SettingChange::Discard(Protector* protector) { | |
23 } | |
24 | |
25 } // namespace protector | |
OLD | NEW |