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

Side by Side Diff: content/browser/accessibility/browser_accessibility_state_impl_win.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/accessibility/browser_accessibility_state_impl.h" 5 #include "content/browser/accessibility/browser_accessibility_state_impl.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <psapi.h> 8 #include <psapi.h>
9 #include <stddef.h>
9 10
10 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
13 #include "base/strings/string_util.h" 14 #include "base/strings/string_util.h"
14 15
15 namespace content { 16 namespace content {
16 17
17 void BrowserAccessibilityStateImpl::UpdatePlatformSpecificHistograms() { 18 void BrowserAccessibilityStateImpl::UpdatePlatformSpecificHistograms() {
18 // NOTE: this method is run from the file thread to reduce jank, since 19 // NOTE: this method is run from the file thread to reduce jank, since
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 zoomtext = true; 70 zoomtext = true;
70 } 71 }
71 72
72 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinJAWS", jaws); 73 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinJAWS", jaws);
73 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinNVDA", nvda); 74 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinNVDA", nvda);
74 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinSAToGo", satogo); 75 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinSAToGo", satogo);
75 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinZoomText", zoomtext); 76 UMA_HISTOGRAM_BOOLEAN("Accessibility.WinZoomText", zoomtext);
76 } 77 }
77 78
78 } // namespace content 79 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698