Home | History | Annotate | Download | only in component_updater

Lines Matching refs:version

52 // If we don't have a SwiftShader component, this is the version we claim.
63 // SwiftShader has version encoded in the path itself
68 Version* latest,
76 Version version(path.BaseName().MaybeAsASCII());
77 if (!version.IsValid())
79 if (version.CompareTo(*latest) > 0 &&
84 *latest = version;
102 explicit SwiftShaderComponentInstaller(const Version& version);
115 Version current_version_;
119 const Version& version)
120 : current_version_(version) {
121 DCHECK(version.IsValid());
136 manifest.GetStringASCII("version", &proposed_version);
137 Version version(proposed_version.c_str());
138 if (!version.IsValid())
140 if (current_version_.CompareTo(version) >= 0)
147 GetSwiftShaderBaseDirectory().AppendASCII(version.GetString());
153 current_version_ = version;
167 const Version& version) {
172 swiftshader.installer = new SwiftShaderComponentInstaller(version);
173 swiftshader.version = version;
203 Version version(kNullVersion);
204 GetLatestSwiftShaderDirectory(&path, &version, NULL);
209 base::Bind(&FinishSwiftShaderUpdateRegistration, cus_, version));
215 // Check if there already is a version of swiftshader installed,
227 Version version(kNullVersion);
229 if (GetLatestSwiftShaderDirectory(&path, &version, &older_dirs))