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

Side by Side Diff: chrome/browser/ui/views/accessibility/navigation_accessibility_uitest_win.cc

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 <oleacc.h> 5 #include <oleacc.h>
6 6
7 #include "base/macros.h"
7 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
8 #include "base/win/scoped_bstr.h" 9 #include "base/win/scoped_bstr.h"
9 #include "base/win/scoped_com_initializer.h" 10 #include "base/win/scoped_com_initializer.h"
10 #include "base/win/scoped_comptr.h" 11 #include "base/win/scoped_comptr.h"
11 #include "base/win/scoped_variant.h" 12 #include "base/win/scoped_variant.h"
12 #include "chrome/app/chrome_command_ids.h" 13 #include "chrome/app/chrome_command_ids.h"
13 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
14 #include "chrome/browser/ui/browser_commands.h" 15 #include "chrome/browser/ui/browser_commands.h"
15 #include "chrome/browser/ui/browser_window.h" 16 #include "chrome/browser/ui/browser_window.h"
16 #include "chrome/browser/ui/views/frame/browser_view.h" 17 #include "chrome/browser/ui/views/frame/browser_view.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // second page. 250 // second page.
250 EXPECT_NE("First Page", name); 251 EXPECT_NE("First Page", name);
251 252
252 // Finish when we get an event on the second page. 253 // Finish when we get an event on the second page.
253 if (name == "This page is in English") { 254 if (name == "This page is in English") {
254 LOG(INFO) << "Got event on second page, finishing test."; 255 LOG(INFO) << "Got event on second page, finishing test.";
255 break; 256 break;
256 } 257 }
257 } 258 }
258 } 259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698