| 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_
|
|
|