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

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

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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/extension_global_error.h
diff --git a/chrome/browser/extensions/extension_global_error.h b/chrome/browser/extensions/extension_global_error.h
index 7a45468cd452a3c1df136927fa5b15fd2c4668ef..1b02e883eae3e62fde6c57c7c894853b68211d2d 100644
--- a/chrome/browser/extensions/extension_global_error.h
+++ b/chrome/browser/extensions/extension_global_error.h
@@ -29,15 +29,15 @@ class ExtensionGlobalError : public GlobalError {
// Returns sets replaying the IDs that have been added with the
// Add[...]Extension methods.
- const ExtensionIdSet* get_external_extension_ids() const {
+ const extensions::ExtensionIdSet* get_external_extension_ids() const {
return external_extension_ids_.get();
}
- const ExtensionIdSet* get_blacklisted_extension_ids() const {
+ const extensions::ExtensionIdSet* get_blacklisted_extension_ids() const {
return blacklisted_extension_ids_.get();
}
- const ExtensionIdSet* get_orphaned_extension_ids() const {
+ const extensions::ExtensionIdSet* get_orphaned_extension_ids() const {
return orphaned_extension_ids_.get();
}
@@ -59,14 +59,14 @@ class ExtensionGlobalError : public GlobalError {
private:
bool should_delete_self_on_close_;
ExtensionService* extension_service_;
- scoped_ptr<ExtensionIdSet> external_extension_ids_;
- scoped_ptr<ExtensionIdSet> blacklisted_extension_ids_;
- scoped_ptr<ExtensionIdSet> orphaned_extension_ids_;
+ scoped_ptr<extensions::ExtensionIdSet> external_extension_ids_;
+ scoped_ptr<extensions::ExtensionIdSet> blacklisted_extension_ids_;
+ scoped_ptr<extensions::ExtensionIdSet> orphaned_extension_ids_;
string16 message_; // Displayed in the body of the alert.
// For a given set of extension IDs, generates appropriate text
// describing what the user needs to know about them.
- string16 GenerateMessageSection(const ExtensionIdSet* extensions,
+ string16 GenerateMessageSection(const extensions::ExtensionIdSet* extensions,
int template_message_id);
// Generates the message displayed in the body of the alert.
« no previous file with comments | « chrome/browser/extensions/extension_function_test_utils.cc ('k') | chrome/browser/extensions/extension_global_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698