HomeSort by relevance Sort by last modified time
    Searched refs:usagestats (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/installer/util/
fake_product_state.h 20 void set_usagestats(DWORD usagestats) {
22 usagestats_ = usagestats;
installation_state.h 76 // Returns true and populates |usagestats| if the product has such a value;
77 // otherwise, returns false and does not modify |usagestats|. Expected values
78 // are 0 (false) and 1 (true), although |usagestats| is given whatever is
80 bool GetUsageStats(DWORD* usagestats) const;
installation_state.cc 101 // "usagestats" may be absent, 0 (false), or 1 (true). On the chance that
210 bool ProductState::GetUsageStats(DWORD* usagestats) const {
211 DCHECK(usagestats);
214 *usagestats = usagestats_;
installation_validator.cc 56 // Products must not have usagestats consent values when multi-install
90 // Products must not have usagestats consent values when multi-install
146 // UsageStats consent values are always allowed on the binaries.
698 // Validates usagestats for the product or binaries in |ctx|.
701 DWORD usagestats = 0; local
702 if (ctx.state.GetUsageStats(&usagestats)) {
706 << " has a usagestats value (" << usagestats
708 } else if (usagestats != 0 && usagestats != 1)
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_util.cc 366 // Copy usagestats from the binaries to the product's ClientState key.
369 DWORD usagestats = 0; local
370 if (product && product->GetUsageStats(&usagestats)) {
376 << dist->GetDisplayName() << " to migrate usagestats.";
378 state_key.WriteValue(google_update::kRegUsageStatsField, usagestats);
setup_util_unittest.cc 435 DWORD usagestats = 0; local
475 // Confirm that usagestats were copied to CF and that its channel was
479 EXPECT_TRUE(chrome_frame.GetUsageStats(&usagestats));
480 EXPECT_EQ(1U, usagestats);
install_worker.cc 923 DWORD usagestats = 0; local
    [all...]
install_worker_unittest.cc 111 void set_usagestats(DWORD usagestats) {
113 usagestats_ = usagestats;
596 // Test that usagestats values are migrated properly.
626 // Expect to see a set value for the usagestats in the multi Client State key.
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 157 this.usageStats_ = document.getElementById('usagestats-consent');
159 document.getElementById('usagestats-consent-checkbox');

Completed in 1032 milliseconds