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

Side by Side Diff: chrome/browser/chromeos/accessibility/accessibility_manager.h

Issue 566863003: Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/accessibility/accessibility_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_
6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "ash/accessibility_delegate.h" 10 #include "ash/accessibility_delegate.h"
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 bool large_cursor_enabled_; 266 bool large_cursor_enabled_;
267 bool sticky_keys_enabled_; 267 bool sticky_keys_enabled_;
268 bool spoken_feedback_enabled_; 268 bool spoken_feedback_enabled_;
269 bool high_contrast_enabled_; 269 bool high_contrast_enabled_;
270 bool autoclick_enabled_; 270 bool autoclick_enabled_;
271 int autoclick_delay_ms_; 271 int autoclick_delay_ms_;
272 bool virtual_keyboard_enabled_; 272 bool virtual_keyboard_enabled_;
273 273
274 ash::AccessibilityNotificationVisibility spoken_feedback_notification_; 274 ash::AccessibilityNotificationVisibility spoken_feedback_notification_;
275 275
276 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_;
277
278 bool should_speak_chrome_vox_announcements_on_user_screen_; 276 bool should_speak_chrome_vox_announcements_on_user_screen_;
279 277
280 bool system_sounds_enabled_; 278 bool system_sounds_enabled_;
281 279
282 AccessibilityStatusCallbackList callback_list_; 280 AccessibilityStatusCallbackList callback_list_;
283 281
284 bool braille_display_connected_; 282 bool braille_display_connected_;
285 ScopedObserver<extensions::api::braille_display_private::BrailleController, 283 ScopedObserver<extensions::api::braille_display_private::BrailleController,
286 AccessibilityManager> scoped_braille_observer_; 284 AccessibilityManager> scoped_braille_observer_;
287 285
288 bool braille_ime_current_; 286 bool braille_ime_current_;
289 287
288 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_;
289
290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); 290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager);
291 }; 291 };
292 292
293 } // namespace chromeos 293 } // namespace chromeos
294 294
295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ 295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/accessibility/accessibility_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698