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

Unified Diff: chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 8 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: chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc
diff --git a/chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc b/chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc
index 6d6aed9533bad7bdc32c8e8a8dda17b4e676f987..68b6a9827e5810d0e9c2929275ab56382e818c4f 100644
--- a/chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc
+++ b/chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc
@@ -22,10 +22,9 @@ typedef testing::Test TabManagerDelegateTest;
TEST_F(TabManagerDelegateTest, LowMemoryKill) {
std::vector<arc::ArcProcess> arc_processes = {
- {1, 10, "top", arc::ProcessState::TOP},
- {2, 20, "foreground", arc::ProcessState::FOREGROUND_SERVICE},
- {3, 30, "service", arc::ProcessState::SERVICE}
- };
+ {1, 10, "top", arc::mojom::ProcessState::TOP},
+ {2, 20, "foreground", arc::mojom::ProcessState::FOREGROUND_SERVICE},
+ {3, 30, "service", arc::mojom::ProcessState::SERVICE}};
TabStats tab1, tab2, tab3, tab4, tab5;
tab1.tab_contents_id = 100;
@@ -75,9 +74,9 @@ TEST_F(TabManagerDelegateTest, SetOomScoreAdj) {
MockTabManagerDelegate tab_manager_delegate;
std::vector<arc::ArcProcess> arc_processes = {
- {1, 10, "top", arc::ProcessState::TOP},
- {2, 20, "foreground", arc::ProcessState::FOREGROUND_SERVICE},
- {3, 30, "service", arc::ProcessState::SERVICE}};
+ {1, 10, "top", arc::mojom::ProcessState::TOP},
+ {2, 20, "foreground", arc::mojom::ProcessState::FOREGROUND_SERVICE},
+ {3, 30, "service", arc::mojom::ProcessState::SERVICE}};
TabStats tab1, tab2, tab3, tab4, tab5;
tab1.is_pinned = true;

Powered by Google App Engine
This is Rietveld 408576698