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

Unified Diff: extensions/browser/info_map.cc

Issue 964553002: Remove support for special "sign in process" state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ocl3
Patch Set: rebased Created 5 years, 9 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 | « extensions/browser/info_map.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/info_map.cc
diff --git a/extensions/browser/info_map.cc b/extensions/browser/info_map.cc
index 23587d5f1c7a8fae2162ab5e4e1157444084e428..00b2437b682d7a7f2f67c6973fcafc8a5ef1b4e9 100644
--- a/extensions/browser/info_map.cc
+++ b/extensions/browser/info_map.cc
@@ -46,7 +46,7 @@ InfoMap::ExtraData::ExtraData()
InfoMap::ExtraData::~ExtraData() {}
-InfoMap::InfoMap() : signin_process_id_(-1) {
+InfoMap::InfoMap() {
}
void InfoMap::AddExtension(const Extension* extension,
@@ -232,14 +232,6 @@ QuotaService* InfoMap::GetQuotaService() {
return quota_service_.get();
}
-void InfoMap::SetSigninProcess(int process_id) {
- signin_process_id_ = process_id;
-}
-
-bool InfoMap::IsSigninProcess(int process_id) const {
- return process_id == signin_process_id_;
-}
-
void InfoMap::SetNotificationsDisabled(
const std::string& extension_id,
bool notifications_disabled) {
« no previous file with comments | « extensions/browser/info_map.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698