Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: chromeos/components/tether/fake_host_scan_cache.h

Issue 2913313002: Tether: Persist if first-time setup is required to HostScanCache. (Closed)
Patch Set: khorimoto@ comments. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos/components/tether/fake_host_scan_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/components/tether/fake_host_scan_cache.h
diff --git a/chromeos/components/tether/fake_host_scan_cache.h b/chromeos/components/tether/fake_host_scan_cache.h
index 1b390187e164cc9b89aad7522fc95de53d80506f..e63c3fb8724a71d8b829d1d2b0291ad86bcbb59d 100644
--- a/chromeos/components/tether/fake_host_scan_cache.h
+++ b/chromeos/components/tether/fake_host_scan_cache.h
@@ -23,6 +23,7 @@ class FakeHostScanCache : public HostScanCache {
std::string carrier;
int battery_percentage;
int signal_strength;
+ bool setup_required;
};
FakeHostScanCache();
@@ -52,9 +53,11 @@ class FakeHostScanCache : public HostScanCache {
const std::string& device_name,
const std::string& carrier,
int battery_percentage,
- int signal_strength) override;
+ int signal_strength,
+ bool setup_required) override;
bool RemoveHostScanResult(const std::string& tether_network_guid) override;
void ClearCacheExceptForActiveHost() override;
+ bool DoesHostRequireSetup(const std::string& tether_network_guid) override;
void OnPreviouslyConnectedHostIdsChanged() override;
private:
« no previous file with comments | « no previous file | chromeos/components/tether/fake_host_scan_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698