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

Unified Diff: ui/events/x/events_x.cc

Issue 2050943002: Roll base to 9e74307b276b2f9988005c0e97e85ee222586f79. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ui/events/x/events_x.cc
diff --git a/ui/events/x/events_x.cc b/ui/events/x/events_x.cc
index 64da7ca6c8626085e4308056c225f829659c9a1f..d9dec447e71e48a8e224a1e0ca68413d218659a3 100644
--- a/ui/events/x/events_x.cc
+++ b/ui/events/x/events_x.cc
@@ -41,7 +41,7 @@ const int kMaxWheelButton = 7;
class XModifierStateWatcher{
public:
static XModifierStateWatcher* GetInstance() {
- return Singleton<XModifierStateWatcher>::get();
+ return base::Singleton<XModifierStateWatcher>::get();
}
int StateFromKeyboardCode(ui::KeyboardCode keyboard_code) {
@@ -100,7 +100,7 @@ class XModifierStateWatcher{
unsigned int state() { return state_; }
private:
- friend struct DefaultSingletonTraits<XModifierStateWatcher>;
+ friend struct base::DefaultSingletonTraits<XModifierStateWatcher>;
XModifierStateWatcher() : state_(0) { }
« no previous file with comments | « ui/events/gesture_detection/gesture_configuration_default.cc ('k') | ui/gfx/android/shared_device_display_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698