/external/chromium_org/chrome/installer/setup/ |
install_worker.h | 37 const base::Version& new_version, 47 const base::Version& new_version, 90 const base::Version& new_version, 113 const base::Version& new_version, 139 // If |new_version| is empty, the registrations will point to 143 const base::Version& new_version, 154 const base::Version& new_version, 174 // |installer_state|). |new_version| is the version of the product(s) 178 const base::Version& new_version, 184 // in |installer_state|). |new_version| is the version of the product(s [all...] |
install_worker.cc | 91 const Version& new_version, 119 new_version.GetString())); 133 const Version& new_version, 137 installer_state.GetInstallerDirectory(new_version)); 206 const Version& new_version, 301 // --verbose-logging. |setup_path| and |new_version| are optional only when 307 const Version& new_version) { 313 // setup_path and new_version are required when not uninstalling. 315 (!setup_path.empty() && new_version.IsValid())); 332 binaries_setup_path = installer_state.GetInstallerDirectory(new_version) [all...] |
install.cc | 162 // new_version: new Chrome version that needs to be installed 179 const Version& new_version, 195 new_version, 207 new_version.Equals(*current_version->get()) ? 221 VLOG(1) << "First install of version " << new_version.GetString(); 225 if (new_version.Equals(**current_version)) { 226 VLOG(1) << "Install repaired of version " << new_version.GetString(); 230 if (new_version.CompareTo(**current_version) > 0) { 232 VLOG(1) << "Version updated to " << new_version.GetString() 236 VLOG(1) << "Version updated to " << new_version.GetString() [all...] |
install.h | 102 // new_version: new Chrome version that needs to be installed 117 const Version& new_version);
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_register_job.cc | 136 DCHECK(!internal_.new_version.get()); 137 internal_.new_version = version; 140 ServiceWorkerVersion* ServiceWorkerRegisterJob::new_version() { function in class:content::ServiceWorkerRegisterJob 142 return internal_.new_version.get(); 328 new_version()->embedded_worker()->AddListener(this); 329 new_version()->StartWorker( 346 new_version()->script_cache_map()->main_script_status(); 371 registration()->SetInstallingVersion(new_version()); 374 ResolvePromise(SERVICE_WORKER_OK, registration(), new_version()); 378 new_version()->SetStatus(ServiceWorkerVersion::INSTALLING) [all...] |
service_worker_register_job.h | 97 scoped_refptr<ServiceWorkerVersion> new_version; member in struct:content::ServiceWorkerRegisterJob::Internal 106 ServiceWorkerVersion* new_version();
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_database_callbacks.cc | 34 int64 new_version) { 39 ipc_thread_id_, ipc_database_callbacks_id_, old_version, new_version));
|
indexed_db_database_callbacks.h | 24 virtual void OnVersionChange(int64 old_version, int64 new_version);
|
mock_indexed_db_database_callbacks.h | 17 virtual void OnVersionChange(int64 old_version, int64 new_version) OVERRIDE {}
|
/external/chromium_org/chrome/installer/test/ |
alternate_version_generator.h | 28 // |new_version|, when non-NULL, are given the original and new version numbers 34 std::wstring* new_version);
|
alternate_version_generator.cc | 310 ChromeVersion new_version; member in struct:__anon10361::VisitResourceContext 333 // Replace all occurrences of current_version with new_version 342 ctx.new_version.high(), ctx.new_version.low() 407 ctx->new_version.set_value(ctx->current_version.value() + incrementer); 408 ctx->new_version_str = ctx->new_version.ToString(); 417 // |new_version|, when non-NULL, are given the original and new version numbers 422 std::wstring* new_version) { 456 if (new_version != NULL) 457 new_version->assign(ctx.new_version_str) [all...] |
alternate_version_generator_main.cc | 159 std::wstring new_version; local 162 &original_version, &new_version)) { 164 new_version.c_str(), original_version.c_str());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
diff.rb | 18 def initialize(old_version, new_version) 19 @old_version, @new_version = old_version, new_version 26 @new_words = explode(@new_version)
|
/external/chromium_org/chrome/browser/sync/glue/ |
bookmark_change_processor.cc | 117 int64 new_version = local 120 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version); 139 UpdateTransactionVersion(new_version, bookmark_model_, 144 int64 new_version = syncer::syncable::kInvalidTransactionVersion; local 146 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version); 161 UpdateTransactionVersion(new_version, bookmark_model_, 226 int64 new_version = syncer::syncable::kInvalidTransactionVersion; local 230 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version); 251 new_version, 378 int64 new_version = syncer::syncable::kInvalidTransactionVersion local [all...] |
/external/chromium_org/chromeos/dbus/ |
update_engine_client.h | 52 std::string new_version; member in struct:chromeos::UpdateEngineClient::Status
|
update_engine_client.cc | 303 reader.PopString(&status.new_version) && 355 std::string new_version; local 360 reader.PopString(&new_version) && 370 status.new_version = new_version;
|
/external/chromium_org/sync/engine/ |
commit_util.cc | 237 int64 new_version = entry_response.version(); local 245 new_version = 0; 247 bad_commit_version = 0 == new_version; 249 bad_commit_version = old_version > new_version; 254 << " new_version:" << entry_response.version(); 261 local_entry->PutBaseVersion(new_version); 263 << " to: " << new_version; 264 local_entry->PutServerVersion(new_version); 364 << " new_version:" << entry_response.version();
|
/external/chromium_org/chrome/installer/util/ |
installer_state.h | 165 // * new_version >= CUV. 169 const base::Version& new_version) const; 185 // than |new_version| and not equal to |existing_version|. |existing_version| 187 void RemoveOldVersionDirectories(const base::Version& new_version,
|
installer_state_unittest.cc | 268 Version new_version(kNewVersion); 270 ASSERT_TRUE(new_version.IsValid()); 274 installer_state.GetInstallerDirectory(new_version)); 278 base::UTF8ToWide(new_version.GetString()))); 310 installer_state.RemoveOldVersionDirectories(new_version, 321 installer_state.RemoveOldVersionDirectories(new_version, 510 Version new_version(kNewVersion); 516 ASSERT_TRUE(new_version.IsValid()); 575 installer_state.RemoveOldVersionDirectories(new_version, [all...] |
installer_state.cc | 558 const Version& new_version) const { 560 DCHECK(new_version.IsValid()); 564 new_version.CompareTo(critical_update_version_) >= 0) { 671 const Version& new_version, 678 existing_version_strings.insert(new_version.GetString());
|
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 169 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1) 185 print 'Calling ZoneCompactor to update bionic to %s...' % new_version 190 bionic_libc_zoneinfo_dir, new_version])
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
test_file_system.py | 73 def SetVersion(self, path, new_version): 79 self._path_stats[path] = new_version 86 new_version)
|
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
kiosk_app_manager_browsertest.cc | 557 std::string new_version; local 558 EXPECT_TRUE(GetCachedCrx(kTestLocalFsKioskApp, &new_crx_path, &new_version)); 559 EXPECT_EQ("2.0.0", new_version); 597 std::string new_version; local 598 EXPECT_TRUE(GetCachedCrx(kTestLocalFsKioskApp, &v2_crx_path, &new_version)); 599 EXPECT_EQ("2.0.0", new_version);
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
update_screen.cc | 147 VLOG(1) << "Noncritical update available: " << status.new_version; 150 VLOG(1) << "Critical update available: " << status.new_version; 170 VLOG(1) << "Non-critical update available: " << status.new_version; 173 VLOG(1) << "Critical update available: " << status.new_version;
|
/external/chromium_org/device/test/ |
usb_test_gadget_impl.cc | 308 std::string new_version; local 309 while (!GetVersion(&new_version) || new_version != version) {
|