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

Side by Side Diff: chrome/browser/download/notification/download_notification_browsertest.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 <stddef.h> 5 #include <stddef.h>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/prefs/pref_service.h"
13 #include "base/run_loop.h" 12 #include "base/run_loop.h"
14 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
15 #include "chrome/browser/chromeos/profiles/profile_helper.h" 14 #include "chrome/browser/chromeos/profiles/profile_helper.h"
16 #include "chrome/browser/download/chrome_download_manager_delegate.h" 15 #include "chrome/browser/download/chrome_download_manager_delegate.h"
17 #include "chrome/browser/download/download_prefs.h" 16 #include "chrome/browser/download/download_prefs.h"
18 #include "chrome/browser/download/download_service.h" 17 #include "chrome/browser/download/download_service.h"
19 #include "chrome/browser/download/download_service_factory.h" 18 #include "chrome/browser/download/download_service_factory.h"
20 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
21 #include "chrome/browser/signin/signin_manager_factory.h" 20 #include "chrome/browser/signin/signin_manager_factory.h"
22 #include "chrome/browser/ui/browser.h" 21 #include "chrome/browser/ui/browser.h"
23 #include "chrome/browser/ui/browser_commands.h" 22 #include "chrome/browser/ui/browser_commands.h"
24 #include "chrome/common/chrome_paths.h" 23 #include "chrome/common/chrome_paths.h"
25 #include "chrome/common/chrome_switches.h" 24 #include "chrome/common/chrome_switches.h"
26 #include "chrome/common/pref_names.h" 25 #include "chrome/common/pref_names.h"
27 #include "chrome/grit/chromium_strings.h" 26 #include "chrome/grit/chromium_strings.h"
28 #include "chrome/grit/generated_resources.h" 27 #include "chrome/grit/generated_resources.h"
29 #include "chrome/test/base/in_process_browser_test.h" 28 #include "chrome/test/base/in_process_browser_test.h"
30 #include "chrome/test/base/ui_test_utils.h" 29 #include "chrome/test/base/ui_test_utils.h"
31 #include "chromeos/chromeos_switches.h" 30 #include "chromeos/chromeos_switches.h"
31 #include "components/prefs/pref_service.h"
32 #include "components/signin/core/browser/signin_manager_base.h" 32 #include "components/signin/core/browser/signin_manager_base.h"
33 #include "content/public/browser/browser_context.h" 33 #include "content/public/browser/browser_context.h"
34 #include "content/public/browser/download_item.h" 34 #include "content/public/browser/download_item.h"
35 #include "content/public/browser/download_manager.h" 35 #include "content/public/browser/download_manager.h"
36 #include "content/public/test/download_test_observer.h" 36 #include "content/public/test/download_test_observer.h"
37 #include "grit/theme_resources.h" 37 #include "grit/theme_resources.h"
38 #include "net/test/embedded_test_server/embedded_test_server.h" 38 #include "net/test/embedded_test_server/embedded_test_server.h"
39 #include "net/test/url_request/url_request_slow_download_job.h" 39 #include "net/test/url_request/url_request_slow_download_job.h"
40 #include "ui/base/l10n/l10n_util.h" 40 #include "ui/base/l10n/l10n_util.h"
41 #include "ui/message_center/message_center.h" 41 #include "ui/message_center/message_center.h"
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT, 1306 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT,
1307 GetNotification(notification_id_user1)->type()); 1307 GetNotification(notification_id_user1)->type());
1308 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT, 1308 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT,
1309 GetNotification(notification_id_user2_1)->type()); 1309 GetNotification(notification_id_user2_1)->type());
1310 // Normal notifications for user2. 1310 // Normal notifications for user2.
1311 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT, 1311 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT,
1312 GetNotification(notification_id_user2_1)->type()); 1312 GetNotification(notification_id_user2_1)->type());
1313 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT, 1313 EXPECT_EQ(message_center::NOTIFICATION_TYPE_BASE_FORMAT,
1314 GetNotification(notification_id_user2_2)->type()); 1314 GetNotification(notification_id_user2_2)->type());
1315 } 1315 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698