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

Side by Side Diff: ui/accessibility/platform/atk_util_auralinux.h

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 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 UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ 5 #ifndef UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_
6 #define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ 6 #define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "ui/accessibility/ax_export.h" 9 #include "ui/accessibility/ax_export.h"
10 10
(...skipping 10 matching lines...) Expand all
21 public: 21 public:
22 // Get the single instance of this class. 22 // Get the single instance of this class.
23 static AtkUtilAuraLinux* GetInstance(); 23 static AtkUtilAuraLinux* GetInstance();
24 24
25 AtkUtilAuraLinux(); 25 AtkUtilAuraLinux();
26 virtual ~AtkUtilAuraLinux(); 26 virtual ~AtkUtilAuraLinux();
27 27
28 void Initialize(scoped_refptr<base::TaskRunner> init_task_runner); 28 void Initialize(scoped_refptr<base::TaskRunner> init_task_runner);
29 29
30 private: 30 private:
31 friend struct DefaultSingletonTraits<AtkUtilAuraLinux>; 31 friend struct base::DefaultSingletonTraits<AtkUtilAuraLinux>;
32 }; 32 };
33 33
34 } // namespace ui 34 } // namespace ui
35 35
36 #endif // UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ 36 #endif // UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_
OLDNEW
« no previous file with comments | « tools/valgrind/drmemory/suppressions.txt ('k') | ui/accessibility/platform/atk_util_auralinux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698