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

Unified Diff: chrome/browser/autofill/risk/fingerprint_browsertest.cc

Issue 12544028: [Autofill] Remove debug logging from Risk fingerprint browsertest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « no previous file | components/autofill/browser/risk/fingerprint.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/risk/fingerprint_browsertest.cc
diff --git a/chrome/browser/autofill/risk/fingerprint_browsertest.cc b/chrome/browser/autofill/risk/fingerprint_browsertest.cc
index 6d6fd48e30302fb7e88cd3f15ff9614d14846bd3..1d607748d0b4595cc8d4fb79021eae39d08d9ba7 100644
--- a/chrome/browser/autofill/risk/fingerprint_browsertest.cc
+++ b/chrome/browser/autofill/risk/fingerprint_browsertest.cc
@@ -33,9 +33,6 @@ class AutofillRiskFingerprintTest : public InProcessBrowserTest {
message_loop_(MessageLoop::TYPE_UI) {}
void GetFingerprintTestCallback(scoped_ptr<Fingerprint> fingerprint) {
- // TODO(isherman): Investigating http://crbug.com/174296
- LOG(WARNING) << "Callback called.";
-
// Verify that all fields Chrome can fill have been filled.
ASSERT_TRUE(fingerprint->has_machine_characteristics());
const Fingerprint_MachineCharacteristics& machine =
@@ -101,8 +98,6 @@ class AutofillRiskFingerprintTest : public InProcessBrowserTest {
transient_state.outer_window_size().height());
EXPECT_EQ(kGaiaId, fingerprint->metadata().gaia_id());
- // TODO(isherman): Investigating http://crbug.com/174296
- LOG(WARNING) << "Stopping the message loop.";
message_loop_.Quit();
}
@@ -128,8 +123,6 @@ IN_PROC_BROWSER_TEST_F(AutofillRiskFingerprintTest, MAYBE_GetFingerprint) {
screen_info.rect = WebKit::WebRect(kScreenBounds);
screen_info.availableRect = WebKit::WebRect(kAvailableScreenBounds);
- // TODO(isherman): Investigating http://crbug.com/174296
- LOG(WARNING) << "Loading fingerprint.";
internal::GetFingerprintInternal(
kGaiaId, kWindowBounds, kContentBounds, screen_info,
"25.0.0.123", kCharset, kAcceptLanguages, base::Time::Now(),
@@ -137,8 +130,6 @@ IN_PROC_BROWSER_TEST_F(AutofillRiskFingerprintTest, MAYBE_GetFingerprint) {
base::Unretained(this)));
// Wait for the callback to be called.
- // TODO(isherman): Investigating http://crbug.com/174296
- LOG(WARNING) << "Waiting for the callback to be called.";
message_loop_.Run();
}
« no previous file with comments | « no previous file | components/autofill/browser/risk/fingerprint.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698