Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5615)

Unified Diff: chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc

Issue 7104084: Fix Clang build from revision 88522 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/content_settings/content_settings_origin_identifier_value_map.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc
diff --git a/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc b/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc
index 1d30d90f5419cbf3a7982c2a9187cf153bbba8a3..b086f46b2421f3324625c3806008cc76d0cd2694 100644
--- a/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc
+++ b/chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc
@@ -10,6 +10,21 @@
namespace content_settings {
+OriginIdentifierValueMap::Entry::Entry(
+ ContentSettingsPattern item_pattern,
+ ContentSettingsPattern top_level_frame_pattern,
+ ContentSettingsType content_type,
+ OriginIdentifierValueMap::ResourceIdentifier identifier,
+ Value* value)
+ : item_pattern(item_pattern),
+ top_level_frame_pattern(top_level_frame_pattern),
+ content_type(content_type),
+ identifier(identifier),
+ value(value) {
+}
+
+OriginIdentifierValueMap::Entry::~Entry() {}
+
OriginIdentifierValueMap::OriginIdentifierValueMap() {}
OriginIdentifierValueMap::~OriginIdentifierValueMap() {
« no previous file with comments | « chrome/browser/content_settings/content_settings_origin_identifier_value_map.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698