Searched refs:extension_path (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium/chrome/browser/extensions/
H A Dextension_ui_unittest.cc25 const FilePath& extension_path,
30 FilePath manifest_path = extension_path.Append(
37 extension_path, location, *extension_data,
48 const FilePath& extension_path,
60 extension_path, pages, Extension::INVALID));
66 extension_path.MaybeAsASCII() + ")";
87 FilePath data_test_dir_path, extension_path, expected_output_path; local
91 extension_path = data_test_dir_path.AppendASCII("extensions")
110 CompareExpectedAndActualOutput(extension_path, pages, expected_output_path);
114 extension_path
24 CreateExtensionDetailViewFromPath( const FilePath& extension_path, const std::vector<ExtensionPage>& pages, Extension::Location location) argument
47 CompareExpectedAndActualOutput( const FilePath& extension_path, const std::vector<ExtensionPage>& pages, const FilePath& expected_output_path) argument
151 FilePath data_test_dir_path, extension_path; local
183 FilePath data_test_dir_path, extension_path; local
212 FilePath data_test_dir_path, extension_path; local
[all...]
H A Dexternal_registry_extension_loader_win.cc56 FilePath extension_path(extension_path_str);
57 if (!extension_path.IsAbsolute()) {
H A Duser_script_listener_unittest.cc155 FilePath extension_path = test_dir local
161 service_->LoadExtension(extension_path);
H A Dextension_service.cc190 void ReportExtensionLoadError(const FilePath& extension_path,
225 FilePath extension_path = path_in; local
226 file_util::AbsolutePath(&extension_path);
234 extension_path,
240 ReportExtensionLoadError(extension_path, error);
254 const FilePath& extension_path, const std::string &error) {
260 &ExtensionService::ReportExtensionLoadError, extension_path,
555 const FilePath& extension_path,
567 // Delete extension_path since we're not creating a CrxInstaller
572 extension_file_util::DeleteFile, extension_path, fals
253 ReportExtensionLoadError( const FilePath& extension_path, const std::string &error) argument
554 UpdateExtension(const std::string& id, const FilePath& extension_path, const GURL& download_url) argument
812 LoadExtension(const FilePath& extension_path) argument
1929 ReportExtensionLoadError( const FilePath& extension_path, const std::string &error, NotificationType type, bool be_noisy) argument
[all...]
H A Dextension_service.h239 // |extension_path|.
243 const FilePath& extension_path,
277 // Loads the extension from the directory |extension_path|.
278 void LoadExtension(const FilePath& extension_path);
412 void ReportExtensionLoadError(const FilePath& extension_path,
H A Dextension_browsertests_misc.cc161 FilePath extension_path(test_data_dir_.AppendASCII("api_test")
164 ASSERT_TRUE(LoadExtension(extension_path));
186 FilePath extension_path(test_data_dir_.AppendASCII("subscribe_page_action"));
187 ASSERT_TRUE(LoadExtension(extension_path));
279 FilePath extension_path(test_data_dir_.AppendASCII("browsertest")
281 ASSERT_TRUE(LoadExtension(extension_path));
303 FilePath extension_path(test_data_dir_.AppendASCII("browsertest")
305 ASSERT_TRUE(LoadExtension(extension_path));
H A Dextension_browsertest.cc74 FilePath extension_path = path; local
75 file_util::AbsolutePath(&extension_path);
80 if ((*iter)->path() == extension_path) {
H A Dextension_service_unittest.cc1675 FilePath extension_path = data_dir_ local
1678 service_->LoadExtension(extension_path);
2027 FilePath extension_path = temp.path(); local
2028 FilePath manifest_path = extension_path.Append(Extension::kManifestFilename);
2039 service_->LoadExtension(extension_path);
2053 service_->LoadExtension(extension_path);
2582 FilePath extension_path = extensions_install_dir_.AppendASCII(extension_id); local
2583 EXPECT_TRUE(file_util::PathExists(extension_path));
2604 EXPECT_FALSE(file_util::PathExists(extension_path));
2617 FilePath extension_path local
3418 FilePath extension_path = data_dir_.AppendASCII("good.crx"); local
3434 FilePath extension_path = data_dir_.AppendASCII("good.crx"); local
3468 FilePath extension_path = data_dir_.AppendASCII("good.crx"); local
[all...]
H A Dextensions_ui.cc519 std::string extension_path; local
522 CHECK(args->GetString(0, &extension_path));
526 FilePath::FromWStringHack(UTF8ToWide(extension_path));
530 if (extension_path.empty()) {
H A Dextension_updater_unittest.cc259 const FilePath& extension_path,
262 install_path_ = extension_path;
258 UpdateExtension(const std::string& id, const FilePath& extension_path, const GURL& download_url) argument
/external/chromium/chrome/common/extensions/
H A Dextension_unpacker.h27 explicit ExtensionUnpacker(const FilePath& extension_path);
30 // Install the extension file at |extension_path|. Returns true on success.
45 // |extension_path| is the path to the extension we unpacked that wrote the
47 static bool ReadImagesFromFile(const FilePath& extension_path,
51 // |extension_path| is the path to the extension we unpacked that wrote the
53 static bool ReadMessageCatalogsFromFile(const FilePath& extension_path,
H A Dextension_file_util.h65 const FilePath& extension_path,
73 bool CheckForIllegalFilenames(const FilePath& extension_path,
H A Dextension_file_util.cc89 scoped_refptr<Extension> LoadExtension(const FilePath& extension_path, argument
94 extension_path.Append(Extension::kManifestFilename);
123 if (!extension_l10n_util::LocalizeExtension(extension_path, manifest, error))
127 extension_path,
318 FilePath extension_path; local
319 for (extension_path = enumerator.Next(); !extension_path.value().empty();
320 extension_path = enumerator.Next()) {
323 FilePath basename = extension_path.BaseName();
335 << extension_path
370 LoadExtensionMessageBundle( const FilePath& extension_path, const std::string& default_locale, std::string* error) argument
483 CheckForIllegalFilenames(const FilePath& extension_path, std::string* error) argument
[all...]
H A Dextension_unpacker.cc87 ExtensionUnpacker::ExtensionUnpacker(const FilePath& extension_path) argument
88 : extension_path_(extension_path) {
244 bool ExtensionUnpacker::ReadImagesFromFile(const FilePath& extension_path, argument
246 FilePath path = extension_path.AppendASCII(filenames::kDecodedImagesFilename);
258 const FilePath& extension_path, DictionaryValue* catalogs) {
259 FilePath path = extension_path.AppendASCII(
257 ReadMessageCatalogsFromFile( const FilePath& extension_path, DictionaryValue* catalogs) argument
H A Dextension_l10n_util.h47 bool LocalizeExtension(const FilePath& extension_path,
H A Dextension_l10n_util.cc135 bool LocalizeExtension(const FilePath& extension_path, argument
144 extension_path, default_locale, error));
H A Dextension.h945 FilePath extension_path; member in struct:ExtensionInfo
/external/chromium/chrome/browser/sidebar/
H A Dsidebar_browsertest.cc42 FilePath extension_path; local
43 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &extension_path));
44 extension_path = extension_path.AppendASCII("sidebar");
46 ASSERT_TRUE(LoadExtension(extension_path));
/external/chromium/chrome/browser/renderer_host/
H A Dchrome_render_message_filter.cc188 FilePath extension_path = local
198 extension_path, extension_id, default_locale, reply_msg));
202 const FilePath& extension_path,
214 extension_path, default_locale, &error));
201 OnGetExtensionMessageBundleOnFileThread( const FilePath& extension_path, const std::string& extension_id, const std::string& default_locale, IPC::Message* reply_msg) argument
H A Dchrome_render_message_filter.h71 const FilePath& extension_path,
/external/chromium/chrome/browser/sync/util/
H A Dextensions_activity_monitor_unittest.cc69 void NewEvent(const FilePath::StringType& extension_path, argument
76 FilePath(extension_path), Extension::INVALID, input,
129 const FilePath::StringType& extension_path) {
135 FilePath(extension_path), Extension::INVALID, input,
128 GetExtensionIdForPath( const FilePath::StringType& extension_path) argument
/external/chromium/chrome/browser/sync/glue/
H A Dtheme_util_unittest.cc28 scoped_refptr<Extension> MakeThemeExtension(const FilePath& extension_path, argument
38 extension_path, Extension::INTERNAL, source,
H A Dextension_util_unittest.cc50 const FilePath& extension_path) {
80 extension_path, location, source, Extension::STRICT_ERROR_CHECKS, &error);
386 const FilePath& extension_path) {
393 extension_path, Extension::INTERNAL, source,
45 MakeExtension( bool is_theme, const GURL& update_url, const GURL& launch_url, bool converted_from_user_script, Extension::Location location, int num_plugins, const FilePath& extension_path) argument
382 MakeSyncableExtension( const std::string& version_string, const std::string& update_url_spec, const std::string& name, const FilePath& extension_path) argument
/external/chromium/chrome/browser/ui/webui/options/
H A Dextension_settings_handler.h124 const FilePath& extension_path);
H A Dextension_settings_handler.cc612 std::string extension_path; local
615 CHECK(args->GetString(0, &extension_path));
619 FilePath::FromWStringHack(UTF8ToWide(extension_path));
623 if (extension_path.empty()) {

Completed in 204 milliseconds

12