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

Side by Side Diff: content/browser/accessibility/one_shot_accessibility_tree_search_unittest.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 "base/memory/scoped_ptr.h" 6 #include "base/memory/scoped_ptr.h"
6 #include "content/browser/accessibility/browser_accessibility.h" 7 #include "content/browser/accessibility/browser_accessibility.h"
7 #include "content/browser/accessibility/browser_accessibility_manager.h" 8 #include "content/browser/accessibility/browser_accessibility_manager.h"
8 #include "content/browser/accessibility/one_shot_accessibility_tree_search.h" 9 #include "content/browser/accessibility/one_shot_accessibility_tree_search.h"
9 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
10 11
11 namespace content { 12 namespace content {
12 13
13 namespace { 14 namespace {
14 15
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 search.AddPredicate([](BrowserAccessibility* start, 216 search.AddPredicate([](BrowserAccessibility* start,
216 BrowserAccessibility* current) { 217 BrowserAccessibility* current) {
217 return (current->GetId() % 2 == 1); 218 return (current->GetId() % 2 == 1);
218 }); 219 });
219 ASSERT_EQ(2U, search.CountMatches()); 220 ASSERT_EQ(2U, search.CountMatches());
220 EXPECT_EQ(3, search.GetMatchAtIndex(0)->GetId()); 221 EXPECT_EQ(3, search.GetMatchAtIndex(0)->GetId());
221 EXPECT_EQ(5, search.GetMatchAtIndex(1)->GetId()); 222 EXPECT_EQ(5, search.GetMatchAtIndex(1)->GetId());
222 } 223 }
223 224
224 } // namespace content 225 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698