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

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

Issue 11624036: Move the parsing of homepage_url" and "devtools_page" out of Extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: patch-rebased- 2 Created 7 years, 11 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/manifest_url_parser.h
diff --git a/chrome/browser/extensions/web_intents_parser.h b/chrome/browser/extensions/manifest_url_parser.h
similarity index 50%
copy from chrome/browser/extensions/web_intents_parser.h
copy to chrome/browser/extensions/manifest_url_parser.h
index bb99ab3013fd9e1699c8a80f5d810598bd476d96..c7d6a231348a42ad644849886fcda00fa17f2c1a 100644
--- a/chrome/browser/extensions/web_intents_parser.h
+++ b/chrome/browser/extensions/manifest_url_parser.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_EXTENSIONS_WEB_INTENTS_PARSER_H_
-#define CHROME_BROWSER_EXTENSIONS_WEB_INTENTS_PARSER_H_
+#ifndef CHROME_BROWSER_EXTENSIONS_MANIFEST_URL_PARSER_H_
+#define CHROME_BROWSER_EXTENSIONS_MANIFEST_URL_PARSER_H_
#include "base/basictypes.h"
#include "chrome/browser/extensions/api/profile_keyed_api_factory.h"
@@ -12,26 +12,26 @@ class Profile;
namespace extensions {
-class WebIntentsParser : public ProfileKeyedAPI {
+class ManifestURLParser : public ProfileKeyedAPI {
public:
- explicit WebIntentsParser(Profile* profile);
- virtual ~WebIntentsParser();
+ explicit ManifestURLParser(Profile* profile);
+ virtual ~ManifestURLParser();
// ProfileKeyedAPI implementation.
- static ProfileKeyedAPIFactory<WebIntentsParser>* GetFactoryInstance();
+ static ProfileKeyedAPIFactory<ManifestURLParser>* GetFactoryInstance();
private:
- friend class ProfileKeyedAPIFactory<WebIntentsParser>;
+ friend class ProfileKeyedAPIFactory<ManifestURLParser>;
// ProfileKeyedAPI implementation.
static const char* service_name() {
- return "WebIntentsParser";
+ return "ManifestURLParser";
}
static const bool kServiceIsNULLWhileTesting = true;
- DISALLOW_COPY_AND_ASSIGN(WebIntentsParser);
+ DISALLOW_COPY_AND_ASSIGN(ManifestURLParser);
};
} // namespace extensions
-#endif // CHROME_BROWSER_EXTENSIONS_WEB_INTENTS_PARSER_H_
+#endif // CHROME_BROWSER_EXTENSIONS_MANIFEST_URL_PARSER_H_
« no previous file with comments | « chrome/browser/extensions/extension_context_menu_model.cc ('k') | chrome/browser/extensions/manifest_url_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698