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

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

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) 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 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_
7 7
8 #include <atk/atk.h> 8 #include <atk/atk.h>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
11 #include "content/browser/accessibility/browser_accessibility.h" 12 #include "content/browser/accessibility/browser_accessibility.h"
12 13
13 namespace content { 14 namespace content {
14 15
15 class BrowserAccessibilityAuraLinux; 16 class BrowserAccessibilityAuraLinux;
16 class BrowserAccessibilityManagerAuraLinux; 17 class BrowserAccessibilityManagerAuraLinux;
17 18
18 G_BEGIN_DECLS 19 G_BEGIN_DECLS
19 20
20 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type()) 21 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type())
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 AtkRole atk_role_; 84 AtkRole atk_role_;
84 int interface_mask_; 85 int interface_mask_;
85 86
86 private: 87 private:
87 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAuraLinux); 88 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAuraLinux);
88 }; 89 };
89 90
90 } // namespace content 91 } // namespace content
91 92
92 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ 93 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698