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

Side by Side Diff: third_party/WebKit/Source/platform/scheduler/renderer/user_model.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_ 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_ 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/trace_event/trace_event.h" 9 #include "base/trace_event/trace_event.h"
10 #include "base/trace_event/trace_event_argument.h" 10 #include "base/trace_event/trace_event_argument.h"
11 #include "public/platform/scheduler/renderer/renderer_scheduler.h"
12 #include "public/platform/WebCommon.h" 11 #include "public/platform/WebCommon.h"
13 #include "public/platform/WebInputEvent.h" 12 #include "public/platform/WebInputEvent.h"
13 #include "public/platform/scheduler/renderer/renderer_scheduler.h"
14 14
15 namespace blink { 15 namespace blink {
16 namespace scheduler { 16 namespace scheduler {
17 17
18 class BLINK_PLATFORM_EXPORT UserModel { 18 class BLINK_PLATFORM_EXPORT UserModel {
19 public: 19 public:
20 UserModel(); 20 UserModel();
21 ~UserModel(); 21 ~UserModel();
22 22
23 // Tells us that the system started processing an input event. Must be paired 23 // Tells us that the system started processing an input event. Must be paired
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 bool is_gesture_active_; // This typically means the user's finger is down. 77 bool is_gesture_active_; // This typically means the user's finger is down.
78 bool is_gesture_expected_; 78 bool is_gesture_expected_;
79 79
80 DISALLOW_COPY_AND_ASSIGN(UserModel); 80 DISALLOW_COPY_AND_ASSIGN(UserModel);
81 }; 81 };
82 82
83 } // namespace scheduler 83 } // namespace scheduler
84 } // namespace blink 84 } // namespace blink
85 85
86 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_ 86 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_USER_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698