OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2014 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 "components/content_settings/core/browser/content_settings_client.h" | |
6 | |
7 namespace content_settings { | |
8 | |
9 ContentSettingsClient::ContentSettingsClient() { | |
blundell
2014/10/09 05:50:50
Do you anticipate adding optional methods? If not,
vabr (Chromium)
2014/10/09 13:47:54
Done.
| |
10 } | |
11 | |
12 ContentSettingsClient::~ContentSettingsClient() { | |
13 } | |
14 | |
15 } // namespace content_settings | |
OLD | NEW |