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

Unified Diff: content/child/background_sync/background_sync_type_converters_unittest.cc

Issue 1613053004: [Background Sync Cleanup] Remove mention of oneshot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@purge_periodic
Patch Set: Nit Created 4 years, 11 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
Index: content/child/background_sync/background_sync_type_converters_unittest.cc
diff --git a/content/child/background_sync/background_sync_type_converters_unittest.cc b/content/child/background_sync/background_sync_type_converters_unittest.cc
index 4afca4ce8b8d5388149eabe89174f3fd61399de4..991d37aa6efa645373604e4ae97e3f2cdfee8153 100644
--- a/content/child/background_sync/background_sync_type_converters_unittest.cc
+++ b/content/child/background_sync/background_sync_type_converters_unittest.cc
@@ -1,3 +1,4 @@
+
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -43,7 +44,7 @@ TEST(BackgroundSyncTypeConverterTest, TestDefaultBlinkToMojoConversion) {
ASSERT_EQ(content::BackgroundSyncNetworkState::ONLINE, out->network_state);
}
-TEST(BackgroundSyncTypeConverterTest, TestFullOneShotBlinkToMojoConversion) {
+TEST(BackgroundSyncTypeConverterTest, TestFullBlinkToMojoConversion) {
blink::WebSyncRegistration in(
7, "BlinkToMojo", blink::WebSyncRegistration::NetworkStateAvoidCellular);
content::SyncRegistrationPtr out =
@@ -66,7 +67,7 @@ TEST(BackgroundSyncTypeConverterTest, TestDefaultMojoToBlinkConversion) {
ASSERT_EQ(blink::WebSyncRegistration::NetworkStateOnline, out->networkState);
}
-TEST(BackgroundSyncTypeConverterTest, TestFullOneShotMojoToBlinkConversion) {
+TEST(BackgroundSyncTypeConverterTest, TestFullMojoToBlinkConversion) {
content::SyncRegistrationPtr in(
content::SyncRegistration::New());
in->handle_id = 41;

Powered by Google App Engine
This is Rietveld 408576698