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

Unified Diff: content/public/browser/security_style_explanation.cc

Issue 1181293003: Expand SecurityStyleChanged interfaces to include explanations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
Index: content/public/browser/security_style_explanation.cc
diff --git a/content/public/browser/security_style_explanation.cc b/content/public/browser/security_style_explanation.cc
new file mode 100644
index 0000000000000000000000000000000000000000..122e926ef3a2e074269d3b94d96ed5a8664d81ab
--- /dev/null
+++ b/content/public/browser/security_style_explanation.cc
@@ -0,0 +1,21 @@
+// Copyright 2015 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 "content/public/browser/security_style_explanation.h"
+
+namespace content {
+
+SecurityStyleExplanation::SecurityStyleExplanation() {
+}
+
+SecurityStyleExplanation::SecurityStyleExplanation(
+ const std::string& summary,
+ const std::string& description)
+ : summary(summary), description(description) {
+}
+
+SecurityStyleExplanation::~SecurityStyleExplanation() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698