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

Side by Side Diff: chrome/browser/task_management/providers/web_contents/devtools_tag_browsertest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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 "base/macros.h"
5 #include "chrome/browser/devtools/devtools_window_testing.h" 6 #include "chrome/browser/devtools/devtools_window_testing.h"
6 #include "chrome/browser/task_management/providers/web_contents/web_contents_tag s_manager.h" 7 #include "chrome/browser/task_management/providers/web_contents/web_contents_tag s_manager.h"
7 #include "chrome/browser/task_management/task_management_browsertest_util.h" 8 #include "chrome/browser/task_management/task_management_browsertest_util.h"
8 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/tabs/tab_strip_model.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
10 #include "chrome/test/base/in_process_browser_test.h" 11 #include "chrome/test/base/in_process_browser_test.h"
11 #include "chrome/test/base/ui_test_utils.h" 12 #include "chrome/test/base/ui_test_utils.h"
12 #include "net/test/embedded_test_server/embedded_test_server.h" 13 #include "net/test/embedded_test_server/embedded_test_server.h"
13 14
14 namespace task_management { 15 namespace task_management {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 LoadTestPage(kTestPage2); 111 LoadTestPage(kTestPage2);
111 const base::string16 title2 = task->title(); 112 const base::string16 title2 = task->title();
112 EXPECT_EQ(title1, title2); 113 EXPECT_EQ(title1, title2);
113 114
114 CloseDevToolsWindow(); 115 CloseDevToolsWindow();
115 EXPECT_EQ(1U, tags_manager()->tracked_tags().size()); 116 EXPECT_EQ(1U, tags_manager()->tracked_tags().size());
116 EXPECT_EQ(1U, task_manager.tasks().size()); 117 EXPECT_EQ(1U, task_manager.tasks().size());
117 } 118 }
118 119
119 } // namespace task_management 120 } // namespace task_management
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698