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

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

Issue 1544273002: Switch to standard integer types in content/. (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 "content/browser/accessibility/browser_accessibility_auralinux.h" 5 #include "content/browser/accessibility/browser_accessibility_auralinux.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 #include <string.h>
8 9
9 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
10 #include "content/browser/accessibility/browser_accessibility_manager_auralinux. h" 11 #include "content/browser/accessibility/browser_accessibility_manager_auralinux. h"
11 #include "content/common/accessibility_messages.h" 12 #include "content/common/accessibility_messages.h"
12 13
13 namespace content { 14 namespace content {
14 15
15 static gpointer browser_accessibility_parent_class = NULL; 16 static gpointer browser_accessibility_parent_class = NULL;
16 17
17 static BrowserAccessibilityAuraLinux* ToBrowserAccessibilityAuraLinux( 18 static BrowserAccessibilityAuraLinux* ToBrowserAccessibilityAuraLinux(
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 case ui::AX_ROLE_TREE_ITEM: 933 case ui::AX_ROLE_TREE_ITEM:
933 atk_role_ = ATK_ROLE_TREE_ITEM; 934 atk_role_ = ATK_ROLE_TREE_ITEM;
934 break; 935 break;
935 default: 936 default:
936 atk_role_ = ATK_ROLE_UNKNOWN; 937 atk_role_ = ATK_ROLE_UNKNOWN;
937 break; 938 break;
938 } 939 }
939 } 940 }
940 941
941 } // namespace content 942 } // namespace content
OLDNEW
« no previous file with comments | « content/app/mojo/mojo_browsertest.cc ('k') | content/browser/appcache/appcache_response_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698