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

Side by Side Diff: chrome/browser/password_manager/password_store_win.cc

Issue 686963002: Switching profiler instrumentations from ScopedProfile to ScopedTracker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/password_manager/password_store_win.h" 5 #include "chrome/browser/password_manager/password_store_win.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/profiler/scoped_profile.h" 12 #include "base/profiler/scoped_tracker.h"
13 #include "base/strings/string_util.h" 13 #include "base/strings/string_util.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "components/os_crypt/ie7_password_win.h" 15 #include "components/os_crypt/ie7_password_win.h"
16 #include "components/password_manager/core/browser/password_manager.h" 16 #include "components/password_manager/core/browser/password_manager.h"
17 #include "components/password_manager/core/browser/webdata/password_web_data_ser vice_win.h" 17 #include "components/password_manager/core/browser/webdata/password_web_data_ser vice_win.h"
18 #include "content/public/browser/browser_thread.h" 18 #include "content/public/browser/browser_thread.h"
19 19
20 using autofill::PasswordForm; 20 using autofill::PasswordForm;
21 using content::BrowserThread; 21 using content::BrowserThread;
22 using password_manager::PasswordStoreDefault; 22 using password_manager::PasswordStoreDefault;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 password_store_->AddLoginImpl(*autofill); 136 password_store_->AddLoginImpl(*autofill);
137 } 137 }
138 } 138 }
139 } 139 }
140 return matching_forms; 140 return matching_forms;
141 } 141 }
142 142
143 void PasswordStoreWin::DBHandler::OnWebDataServiceRequestDone( 143 void PasswordStoreWin::DBHandler::OnWebDataServiceRequestDone(
144 PasswordWebDataService::Handle handle, 144 PasswordWebDataService::Handle handle,
145 const WDTypedResult* result) { 145 const WDTypedResult* result) {
146 // TODO(vadimt): Remove ScopedProfile below once crbug.com/422460 is fixed. 146 // TODO(vadimt): Remove ScopedTracker below once crbug.com/422460 is fixed.
147 tracked_objects::ScopedProfile tracking_profile( 147 tracked_objects::ScopedTracker tracking_profile(
148 FROM_HERE_WITH_EXPLICIT_FUNCTION( 148 FROM_HERE_WITH_EXPLICIT_FUNCTION(
149 "422460 PasswordStoreWin::DBHandler::OnWebDataServiceRequestDone")); 149 "422460 PasswordStoreWin::DBHandler::OnWebDataServiceRequestDone"));
150 150
151 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); 151 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
152 152
153 PendingRequestMap::iterator i = pending_requests_.find(handle); 153 PendingRequestMap::iterator i = pending_requests_.find(handle);
154 DCHECK(i != pending_requests_.end()); 154 DCHECK(i != pending_requests_.end());
155 155
156 scoped_ptr<PasswordForm> form(i->second.form); 156 scoped_ptr<PasswordForm> form(i->second.form);
157 PasswordStoreWin::ConsumerCallbackRunner callback_runner( 157 PasswordStoreWin::ConsumerCallbackRunner callback_runner(
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 213
214 void PasswordStoreWin::GetLoginsImpl( 214 void PasswordStoreWin::GetLoginsImpl(
215 const PasswordForm& form, 215 const PasswordForm& form,
216 AuthorizationPromptPolicy prompt_policy, 216 AuthorizationPromptPolicy prompt_policy,
217 const ConsumerCallbackRunner& callback_runner) { 217 const ConsumerCallbackRunner& callback_runner) {
218 ConsumerCallbackRunner get_ie7_login = 218 ConsumerCallbackRunner get_ie7_login =
219 base::Bind(&PasswordStoreWin::GetIE7LoginIfNecessary, 219 base::Bind(&PasswordStoreWin::GetIE7LoginIfNecessary,
220 this, form, callback_runner); 220 this, form, callback_runner);
221 PasswordStoreDefault::GetLoginsImpl(form, prompt_policy, get_ie7_login); 221 PasswordStoreDefault::GetLoginsImpl(form, prompt_policy, get_ie7_login);
222 } 222 }
OLDNEW
« no previous file with comments | « chrome/browser/intranet_redirect_detector.cc ('k') | chrome/browser/policy/cloud/user_policy_signin_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698