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

Side by Side Diff: chrome/browser/notifications/extension_welcome_notification_unittest.cc

Issue 2459823002: [Sync] Rename syncable_prefs to sync_preferences. (Closed)
Patch Set: Created 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/notifications/extension_welcome_notification.h" 5 #include "chrome/browser/notifications/extension_welcome_notification.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "base/test/test_simple_task_runner.h" 15 #include "base/test/test_simple_task_runner.h"
16 #include "base/threading/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "chrome/browser/notifications/notification.h" 17 #include "chrome/browser/notifications/notification.h"
18 #include "chrome/browser/prefs/pref_service_syncable_util.h" 18 #include "chrome/browser/prefs/pref_service_syncable_util.h"
19 #include "chrome/common/pref_names.h" 19 #include "chrome/common/pref_names.h"
20 #include "chrome/test/base/testing_browser_process.h" 20 #include "chrome/test/base/testing_browser_process.h"
21 #include "chrome/test/base/testing_profile.h" 21 #include "chrome/test/base/testing_profile.h"
22 #include "components/pref_registry/pref_registry_syncable.h" 22 #include "components/pref_registry/pref_registry_syncable.h"
23 #include "components/prefs/pref_service.h" 23 #include "components/prefs/pref_service.h"
24 #include "components/sync/model/fake_sync_change_processor.h" 24 #include "components/sync/model/fake_sync_change_processor.h"
25 #include "components/sync/model/sync_error_factory_mock.h" 25 #include "components/sync/model/sync_error_factory_mock.h"
26 #include "components/syncable_prefs/testing_pref_service_syncable.h" 26 #include "components/sync_preferences/testing_pref_service_syncable.h"
27 #include "content/public/test/test_browser_thread_bundle.h" 27 #include "content/public/test/test_browser_thread_bundle.h"
28 #include "extensions/browser/quota_service.h" 28 #include "extensions/browser/quota_service.h"
29 #include "testing/gtest/include/gtest/gtest.h" 29 #include "testing/gtest/include/gtest/gtest.h"
30 #include "ui/message_center/fake_message_center.h" 30 #include "ui/message_center/fake_message_center.h"
31 #include "ui/message_center/notification.h" 31 #include "ui/message_center/notification.h"
32 32
33 class MockMessageCenter : public message_center::FakeMessageCenter { 33 class MockMessageCenter : public message_center::FakeMessageCenter {
34 public: 34 public:
35 MockMessageCenter() 35 MockMessageCenter()
36 : add_notification_calls_(0), 36 : add_notification_calls_(0),
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 529
530 EXPECT_FALSE(task_runner()->HasPendingTask()); 530 EXPECT_FALSE(task_runner()->HasPendingTask());
531 EXPECT_EQ(message_center()->add_notification_calls(), 0); 531 EXPECT_EQ(message_center()->add_notification_calls(), 0);
532 EXPECT_EQ(message_center()->remove_notification_calls(), 0); 532 EXPECT_EQ(message_center()->remove_notification_calls(), 0);
533 EXPECT_EQ(message_center()->notifications_with_shown_as_popup(), 0); 533 EXPECT_EQ(message_center()->notifications_with_shown_as_popup(), 0);
534 EXPECT_FALSE(GetBooleanPref(prefs::kWelcomeNotificationDismissed)); 534 EXPECT_FALSE(GetBooleanPref(prefs::kWelcomeNotificationDismissed));
535 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationDismissedLocal)); 535 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationDismissedLocal));
536 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationPreviouslyPoppedUp)); 536 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationPreviouslyPoppedUp));
537 EXPECT_EQ(GetInt64Pref(prefs::kWelcomeNotificationExpirationTimestamp), 1); 537 EXPECT_EQ(GetInt64Pref(prefs::kWelcomeNotificationExpirationTimestamp), 1);
538 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698