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

Unified Diff: chrome/browser/extensions/external_extension_provider.h

Issue 5535002: Decouple killbit testing from external extension providers (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: update Created 10 years 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/external_extension_provider.h
diff --git a/chrome/browser/extensions/external_extension_provider.h b/chrome/browser/extensions/external_extension_provider.h
index 1d040bd84f6a07ff23dcf635cabf3533e758afef..5bcce1d5f4d7d150d3b50304038a204900330f5c 100644
--- a/chrome/browser/extensions/external_extension_provider.h
+++ b/chrome/browser/extensions/external_extension_provider.h
@@ -6,9 +6,6 @@
#define CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_PROVIDER_H_
#pragma once
-#include <set>
-#include <string>
-
#include "chrome/common/extensions/extension.h"
class FilePath;
@@ -44,8 +41,7 @@ class ExternalExtensionProvider {
// Enumerate registered extension, calling OnExternalExtensionFound on
// the |visitor| object for each registered extension found. |ids_to_ignore|
// contains a list of extension ids that should not result in a call back.
- virtual void VisitRegisteredExtension(
- Visitor* visitor, const std::set<std::string>& ids_to_ignore) const = 0;
+ virtual void VisitRegisteredExtension(Visitor* visitor) const = 0;
// Test if this provider has an extension with id |id| registered.
virtual bool HasExtension(const std::string& id) const = 0;

Powered by Google App Engine
This is Rietveld 408576698