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

Unified Diff: chrome/browser/extensions/api/browsingdata/browsing_data_api.h

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: explanitory comment Created 8 years, 9 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: chrome/browser/extensions/api/browsingdata/browsing_data_api.h
diff --git a/chrome/browser/extensions/api/browsingdata/browsing_data_api.h b/chrome/browser/extensions/api/browsingdata/browsing_data_api.h
index 91a4a0d59b456de4dd139bc2412d0e3cbf392093..a0b66bf44bff3b03e99920f9631cac9e2723c149 100644
--- a/chrome/browser/extensions/api/browsingdata/browsing_data_api.h
+++ b/chrome/browser/extensions/api/browsingdata/browsing_data_api.h
@@ -195,16 +195,16 @@ class RemoveLocalStorageFunction : public BrowsingDataExtensionFunction {
DECLARE_EXTENSION_FUNCTION_NAME("browsingData.removeLocalStorage")
};
-class RemoveOriginBoundCertsFunction : public BrowsingDataExtensionFunction {
+class RemoveDomainBoundCertsFunction : public BrowsingDataExtensionFunction {
public:
- RemoveOriginBoundCertsFunction() {}
- virtual ~RemoveOriginBoundCertsFunction() {}
+ RemoveDomainBoundCertsFunction() {}
+ virtual ~RemoveDomainBoundCertsFunction() {}
protected:
// BrowsingDataTypeExtensionFunction interface method.
virtual int GetRemovalMask() const OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("browsingData.removeOriginBoundCertificates")
+ DECLARE_EXTENSION_FUNCTION_NAME("browsingData.removeDomainBoundCertificates")
};
class RemovePluginDataFunction : public BrowsingDataExtensionFunction {

Powered by Google App Engine
This is Rietveld 408576698