Searched defs:version (Results 351 - 375 of 1371) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/extensions/
H A Dexternal_extension_provider_impl.cc13 #include "base/version.h"
137 scoped_ptr<Version> version; local
138 version.reset(Version::GetVersionFromString(external_version));
139 if (!version.get()) {
141 << extension_id.c_str() << ". Invalid version string \""
145 service_->OnExternalExtensionFileFound(extension_id, version.get(), path,
188 scoped_ptr<Version>* version) const {
207 if (version)
208 version->reset(Version::GetVersionFromString(external_version));
H A Dexternal_policy_extension_loader_unittest.cc10 #include "base/version.h"
66 const Version* version,
65 OnExternalExtensionFileFound(const std::string& id, const Version* version, const FilePath& path, Extension::Location unused) argument
/external/chromium/chrome/browser/safe_browsing/
H A Dbloom_filter.cc100 // Make sure we have a file version that we can understand.
163 // Write the version information.
164 int version = kFileVersion; local
165 int bytes_written = filter.Write(reinterpret_cast<char*>(&version),
166 sizeof(version), NULL);
167 if (bytes_written != sizeof(version))
/external/chromium/chrome/browser/sync/notifier/
H A Dchrome_invalidation_client_unittest.cc82 int64 version, const char* payload) {
87 object_id, version, payload ? &payload_tmp : NULL, NULL);
198 // InvalidateAll shouldn't change any version state.
81 FireInvalidate(const char* type_name, int64 version, const char* payload) argument
/external/chromium/chrome/browser/sync/util/
H A Duser_settings_unittest.cc69 // Create and populate version table.
70 ASSERT_TRUE(db.Execute("CREATE TABLE db_version (version)"));
119 // Create and populate version table.
120 ASSERT_TRUE(db.Execute("CREATE TABLE db_version (version)"));
186 const char* query = "SELECT version FROM db_version";
192 const int version = version_query.ColumnInt(0); local
193 EXPECT_GE(version, 11);
218 const char* query = "SELECT version FROM db_version";
224 const int version = version_query.ColumnInt(0); local
225 EXPECT_GE(version, 1
[all...]
/external/chromium/chrome/browser/themes/
H A Dbrowser_theme_pack.h180 // Numeric version to make sure we're compatible in the future.
181 int32 version; member in struct:BrowserThemePack::BrowserThemePackHeader
/external/chromium/chrome/browser/webdata/
H A Dkeyword_table.cc220 bool KeywordTable::SetBuitinKeywordVersion(int version) { argument
221 return meta_table_->SetValue(kBuiltinKeywordVersion, version);
225 int version = 0; local
226 meta_table_->GetValue(kBuiltinKeywordVersion, &version);
227 return version;
/external/chromium/chrome/common/
H A Dservice_process_util_win.cc76 bool ForceServiceProcessShutdown(const std::string& version, argument
79 std::string versioned_name = version;
/external/chromium/crypto/
H A Dcssm_init.cc55 static CSSM_VERSION version = {2, 0}; local
62 crtn = CSSM_Init(&version, CSSM_PRIVILEGE_SCOPE_NONE, &test_guid,
99 crtn = CSSM_ModuleAttach(&gGuidAppleCSP, &version, &cssmMemoryFunctions, 0,
103 crtn = CSSM_ModuleAttach(&gGuidAppleX509CL, &version, &cssmMemoryFunctions,
107 crtn = CSSM_ModuleAttach(&gGuidAppleX509TP, &version, &cssmMemoryFunctions,
/external/chromium/net/http/
H A Dhttp_response_info.cc24 // The version of the response info used when persisting response info.
27 // The minimum version supported for deserializing response info.
30 // We reserve up to 8 bits for the version number.
109 // read flags and verify version
113 int version = flags & RESPONSE_INFO_VERSION_MASK; local
114 if (version < RESPONSE_INFO_MINIMUM_VERSION ||
115 version > RESPONSE_INFO_VERSION) {
116 DLOG(ERROR) << "unexpected response info version: " << version;
140 X509Certificate::PickleType type = (version
[all...]
/external/chromium/net/tools/dump_cache/
H A Ddump_cache.cc36 "\nIn order to use the upgrade function, a version of this tool that\n"
38 "instance, to upgrade files saved with file format 3.4 to version 5.2,\n"
39 "a version of this program that was compiled with version 3.4 has to be\n"
41 "executable should be compiled with version 5.2 being the current one.";
56 // Upgrade an old version to the current one.
75 const std::wstring& pipe_number, int version) {
87 new_program = base::StringPrintf(L"%ls%d", L"dump_cache_", version);
101 printf("Unable to launch the needed version of this tool: %ls\n",
142 int version local
74 LaunchSlave(const CommandLine& command_line, const std::wstring& pipe_number, int version) argument
[all...]
H A Ddump_files.cc49 return header.version >> 16;
60 printf("version: %d.%d\n", header.version >> 16, header.version & 0xffff);
89 printf("version: %d.%d\n", header.version >> 16, header.version & 0xffff);
271 int version = GetMajorVersionFromFile(index_name); local
272 if (!version)
277 if (version !
[all...]
/external/chromium_org/chrome/app/
H A Dchrome_breakpad_client.cc51 // This is the minimum version of google update that is required for deferred
80 base::string16* version,
84 DCHECK(version);
93 *version = version_info->product_version();
95 version->append(base::ASCIIToUTF16("-devel"));
106 // No version info found. Make up the values.
108 *version = base::ASCIIToUTF16("0.0.0.0-devel");
193 std::string* version) {
195 DCHECK(version);
208 *version
77 GetProductNameAndVersion( const base::FilePath& exe_path, base::string16* product_name, base::string16* version, base::string16* special_build, base::string16* channel_name) argument
192 GetProductNameAndVersion(std::string* product_name, std::string* version) argument
[all...]
H A Dclient_util.cc18 #include "base/version.h"
113 // If that fails then we look at the --chrome-version command line flag to
114 // determine if we should stick with an older dll version even if a new one is
116 // If that fails then finally we look at the version resource in the current
133 LOG(ERROR) << "Invalid command line version: " << version_string;
138 // If no version on the command line, then look at the version resource in
144 LOG(ERROR) << "No valid Chrome version found";
168 string16 version; local
170 dll_ = Load(&version,
[all...]
/external/chromium_org/chrome/browser/android/
H A Dchrome_web_contents_delegate_android.cc162 int version,
174 version,
160 FindMatchRectsReply( WebContents* web_contents, int version, const std::vector<gfx::RectF>& rects, const gfx::RectF& active_rect) argument
/external/chromium_org/chrome/browser/component_updater/
H A Dcomponent_updater_service.h11 #include "base/version.h"
63 // Sent when there is a new version of a registered component. After
82 // is to be installed then version should be "0" or "0.0", else it should be
83 // the current version. |observer|, |fingerprint|, and |name| are optional.
88 Version version; member in struct:CrxComponent
101 // available and its version is bigger than (CrxComponent::version), it will
H A Drecovery_component_installer.cc49 explicit RecoveryComponentInstaller(const Version& version,
70 Version version(prefs->GetString(prefs::kRecoveryComponentVersion));
71 if (!version.IsValid()) {
78 recovery.installer = new RecoveryComponentInstaller(version, prefs);
79 recovery.version = version;
86 void RecoveryUpdateVersionHelper(const Version& version, PrefService* prefs) { argument
88 prefs->SetString(prefs::kRecoveryComponentVersion, version.GetString());
92 const Version& version, PrefService* prefs)
93 : current_version_(version), prefs
91 RecoveryComponentInstaller( const Version& version, PrefService* prefs) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dpending_extension_manager.cc10 #include "base/version.h"
24 std::string GetVersionString(const Version& version) { argument
25 return version.IsValid() ? version.GetString() : "invalid";
177 const Version& version) {
189 version,
218 const Version& version,
227 version,
243 << " old version: " << GetVersionString(pending->version())
174 AddFromExternalFile( const std::string& id, Manifest::Location install_source, const Version& version) argument
215 AddExtensionImpl( const std::string& id, const GURL& update_url, const Version& version, PendingExtensionInfo::ShouldAllowInstallPredicate should_allow_install, bool is_from_sync, bool install_silently, Manifest::Location install_source) argument
[all...]
/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_downloader.h20 #include "base/version.h"
38 UpdateDetails(const std::string& id, const base::Version& version);
42 base::Version version; member in struct:extensions::UpdateDetails
82 void StartBlacklistUpdate(const std::string& version,
122 const std::string& package_hash, const std::string& version,
129 std::string version; member in struct:extensions::ExtensionDownloader::ExtensionFetch
135 const base::Version& version,
166 // applicable (are actually a new version, etc.) in |result|.
192 void NotifyUpdateFound(const std::string& id, const std::string& version);
/external/chromium_org/chrome/browser/
H A Dmemory_details.h50 // The process version
51 string16 version; member in struct:ProcessMemoryInformation
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_seed_processor.cc14 #include "base/version.h"
59 const base::Version& version,
61 DCHECK(version.IsValid());
72 if (!ShouldAddStudy(study, locale, reference_date, version, channel))
144 const base::Version& version) {
146 if (version.CompareToWildcardString(filter.min_version()) < 0)
151 if (version.CompareToWildcardString(filter.max_version()) > 0)
254 const base::Version& version,
272 if (!CheckStudyVersion(study.filter(), version)) {
273 DVLOG(1) << "Filtered out study " << study.name() << " due to version
55 CreateTrialsFromSeed( const TrialsSeed& seed, const std::string& locale, const base::Time& reference_date, const base::Version& version, Study_Channel channel) argument
142 CheckStudyVersion( const Study_Filter& filter, const base::Version& version) argument
250 ShouldAddStudy( const Study& study, const std::string& locale, const base::Time& reference_date, const base::Version& version, Study_Channel channel) argument
[all...]
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_metadata.cc42 void PluginMetadata::AddVersion(const Version& version, argument
44 DCHECK(versions_.find(version) == versions_.end());
45 versions_[version] = status;
104 Version version; local
105 content::WebPluginInfo::CreateVersionFromString(plugin.version, &version);
106 if (!version.IsValid())
107 version = Version("0");
109 // |lower_bound| returns the latest version that is not newer than |version|
[all...]
/external/chromium_org/chrome/browser/themes/
H A Dbrowser_theme_pack.h219 // Numeric version to make sure we're compatible in the future.
220 int32 version; member in struct:BrowserThemePack::BrowserThemePackHeader
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapps_model_builder_unittest.cc42 const std::string& version,
48 value.SetString("version", version);
41 MakeApp(const std::string& name, const std::string& version, const std::string& url, const std::string& id) argument
/external/chromium_org/chrome/browser/ui/webui/help/
H A Dversion_updater_win.cc9 #include "base/version.h"
31 // Windows implementation of version update functionality, used by the WebUI
51 const string16& version) OVERRIDE;
58 // Got the intalled version so the handling of the UPGRADE_ALREADY_UP_TO_DATE
60 void GotInstalledVersion(const Version& version);
84 // This class is used to read the version on the FILE thread and then call back
85 // the version updater in the UI thread. Using a class helps better control
86 // the lifespan of the Version independently of the lifespan of the version
116 // The version updater that must be called back when we are done.
120 // This is the version tha
160 OnReportResults( GoogleUpdateUpgradeResult result, GoogleUpdateErrorCode error_code, const string16& error_message, const string16& version) argument
243 GotInstalledVersion(const Version& version) argument
[all...]

Completed in 1211 milliseconds

<<11121314151617181920>>