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

1234

/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()) {
/external/chromium_org/chrome/browser/extensions/
H A Dextension_ui_unittest.cc68 const base::FilePath& extension_path,
73 base::FilePath manifest_path = extension_path.Append(kManifestFilename);
79 extension_path, location, *extension_data, Extension::REQUIRE_KEY,
88 const base::FilePath& extension_path,
100 extension_path, pages, Manifest::INVALID_LOCATION));
106 extension_path.MaybeAsASCII() + ")";
134 base::FilePath data_test_dir_path, extension_path, expected_output_path; local
138 extension_path = data_test_dir_path.AppendASCII("extensions")
157 CompareExpectedAndActualOutput(extension_path, pages, expected_output_path);
161 extension_path
67 CreateExtensionDetailViewFromPath( const base::FilePath& extension_path, const std::vector<ExtensionPage>& pages, Manifest::Location location) argument
87 CompareExpectedAndActualOutput( const base::FilePath& extension_path, const std::vector<ExtensionPage>& pages, const base::FilePath& expected_output_path) argument
198 base::FilePath data_test_dir_path, extension_path; local
230 base::FilePath data_test_dir_path, extension_path; local
259 base::FilePath data_test_dir_path, extension_path; local
[all...]
H A Dbrowser_action_apitest.cc15 base::FilePath extension_path(test_data_dir_.AppendASCII("browsertest")
17 const Extension* extension = LoadExtension(extension_path);
H A Dunpacked_installer.h35 // Loads the extension from the directory |extension_path|, which is
39 void Load(const base::FilePath& extension_path);
41 // Loads the extension from the directory |extension_path|;
45 // |extension_path| synchronously.
48 bool LoadFromCommandLine(const base::FilePath& extension_path,
H A Drequirements_checker_browsertest.cc33 base::FilePath extension_path; local
35 PathService::Get(chrome::DIR_TEST_DATA, &extension_path);
36 extension_path = extension_path.AppendASCII("requirements_checker")
39 extension_file_util::LoadExtension(extension_path, Manifest::UNPACKED,
H A Dexternal_registry_loader_win.cc95 base::FilePath extension_path(extension_path_str);
96 if (!extension_path.IsAbsolute()) {
103 if (!base::PathExists(extension_path)) {
110 if (!CanOpenFileForReading(extension_path)) {
H A Dpage_action_browsertest.cc77 base::FilePath extension_path(test_data_dir_.AppendASCII("api_test")
80 ASSERT_TRUE(LoadExtension(extension_path));
102 base::FilePath extension_path(
104 ASSERT_TRUE(LoadExtension(extension_path));
181 base::FilePath extension_path(test_data_dir_.AppendASCII("browsertest")
183 const Extension* extension = LoadExtension(extension_path);
H A Dimage_loader.h79 const base::FilePath& extension_path,
/external/chromium_org/chrome/test/functional/
H A Ddoc_viewing.py23 extension_path = '/opt/google/chrome/extensions'\
26 if os.path.exists(extension_path):
27 ext_id = self.InstallExtension(extension_path, from_webstore=True)
29 extension_path)
/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,
/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_org/tools/telemetry/telemetry/core/
H A Dextension_unittest.py17 extension_path = os.path.join(os.path.dirname(__file__),
22 extension_path, options.browser_type)
63 extension_path = os.path.join(os.path.dirname(__file__),
68 extension_path, options.browser_type))
72 extension_path = os.path.join(os.path.dirname(__file__),
76 extension_path, options.browser_type)
134 extension_path = os.path.join(os.path.dirname(__file__),
138 extension_path, options.browser_type, is_component=True)
155 extension_path = os.path.join(os.path.dirname(__file__),
160 extension_path,
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dextension_file_util.cc130 scoped_refptr<Extension> LoadExtension(const base::FilePath& extension_path, argument
134 return LoadExtension(extension_path, std::string(), location, flags, error);
137 scoped_refptr<Extension> LoadExtension(const base::FilePath& extension_path, argument
143 LoadManifest(extension_path, error));
146 if (!extension_l10n_util::LocalizeExtension(extension_path, manifest.get(),
151 scoped_refptr<Extension> extension(Extension::Create(extension_path,
168 base::DictionaryValue* LoadManifest(const base::FilePath& extension_path, argument
171 extension_path.Append(extensions::kManifestFilename);
338 base::FilePath extension_path; local
339 for (extension_path
404 LoadMessageBundle( const base::FilePath& extension_path, const std::string& default_locale, std::string* error) argument
436 LoadMessageBundleSubstitutionMap( const base::FilePath& extension_path, const std::string& extension_id, const std::string& default_locale) argument
459 CheckForIllegalFilenames(const base::FilePath& extension_path, std::string* error) argument
[all...]
H A Dextension_file_util.h112 const base::FilePath& extension_path,
119 const base::FilePath& extension_path,
127 bool CheckForIllegalFilenames(const base::FilePath& extension_path,
/external/chromium_org/chrome/browser/extensions/api/
H A Dexecute_code_function.h54 const base::FilePath& extension_path,
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsync_or_local_value_store_cache.cc108 const base::FilePath extension_path = profile_path.AppendASCII( local
116 factory, extension_path, syncer::EXTENSION_SETTINGS,
/external/chromium_org/chrome/test/telemetry/chromeos/
H A Dlogin_unittest.py38 extension_path = os.path.join(os.path.dirname(__file__), 'autotest_ext')
39 self._load_extension = extension_to_load.ExtensionToLoad(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
/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_org/apps/
H A Dapp_load_service.h51 // Loads (or reloads) the app with |extension_path|, then launches it. Any
55 bool LoadAndLaunch(const base::FilePath& extension_path,

Completed in 352 milliseconds

1234