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

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: rename all the things 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..3ce1cf90e4f323af2048ddcc6aa05865a18dd6ca 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 RemoveServerBoundCertsFunction : public BrowsingDataExtensionFunction {
public:
- RemoveOriginBoundCertsFunction() {}
- virtual ~RemoveOriginBoundCertsFunction() {}
+ RemoveServerBoundCertsFunction() {}
+ virtual ~RemoveServerBoundCertsFunction() {}
protected:
// BrowsingDataTypeExtensionFunction interface method.
virtual int GetRemovalMask() const OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("browsingData.removeOriginBoundCertificates")
+ DECLARE_EXTENSION_FUNCTION_NAME("browsingData.removeServerBoundCertificates")
};
class RemovePluginDataFunction : public BrowsingDataExtensionFunction {

Powered by Google App Engine
This is Rietveld 408576698