summaryrefslogtreecommitdiffstats
path: root/chrome/browser/content_settings/content_settings_details.cc
blob: b6410e292ec76c82768d379f52319e3248719aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/content_settings/content_settings_details.h"

ContentSettingsDetails::ContentSettingsDetails(
    const ContentSettingsPattern& primary_pattern,
    const ContentSettingsPattern& secondary_pattern,
    ContentSettingsType type,
    const std::string& resource_identifier)
    : primary_pattern_(primary_pattern),
      secondary_pattern_(secondary_pattern),
      type_(type),
      resource_identifier_(resource_identifier) {
}