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

Side by Side Diff: content/browser/memory/memory_coordinator_browsertest.cc

Issue 2374343002: Add MemoryCoordinatorImpl (Closed)
Patch Set: comments Created 4 years, 2 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "content/browser/memory/memory_coordinator.h" 5 #include "content/browser/memory/memory_coordinator.h"
6 #include "content/browser/browser_main_loop.h" 6 #include "content/browser/browser_main_loop.h"
7 #include "content/public/common/content_features.h" 7 #include "content/public/common/content_features.h"
8 #include "content/public/test/content_browser_test.h" 8 #include "content/public/test/content_browser_test.h"
9 #include "content/public/test/content_browser_test_utils.h" 9 #include "content/public/test/content_browser_test_utils.h"
10 10
(...skipping 17 matching lines...) Expand all
28 28
29 void SetUp() override { 29 void SetUp() override {
30 EnableForTesting(); 30 EnableForTesting();
31 ContentBrowserTest::SetUp(); 31 ContentBrowserTest::SetUp();
32 } 32 }
33 33
34 private: 34 private:
35 DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorTest); 35 DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorTest);
36 }; 36 };
37 37
38 IN_PROC_BROWSER_TEST_F(MemoryCoordinatorTest, HandleAdded) { 38 // TODO(bashi): Enable this test on macos when MemoryMonitorMac is implemented.
39 #if defined(OS_MACOSX)
40 #define MAYBE_HandleAdded DISABLED_HandleAdded
41 #else
42 #define MAYBE_HandleAdded HandleAdded
43 #endif
44 IN_PROC_BROWSER_TEST_F(MemoryCoordinatorTest, MAYBE_HandleAdded) {
39 GURL url = GetTestUrl("", "simple_page.html"); 45 GURL url = GetTestUrl("", "simple_page.html");
40 NavigateToURL(shell(), url); 46 NavigateToURL(shell(), url);
41 EXPECT_EQ(1u, MemoryCoordinator::GetInstance()->NumChildrenForTesting()); 47 EXPECT_EQ(1u, MemoryCoordinator::GetInstance()->NumChildrenForTesting());
42 } 48 }
43 49
44 } // namespace content 50 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/memory/memory_coordinator.cc ('k') | content/browser/memory/memory_coordinator_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698