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

Side by Side Diff: third_party/WebKit/public/platform/scheduler/renderer/renderer_scheduler.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER _H_ 5 #ifndef THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER _H_
6 #define THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER _H_ 6 #define THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER _H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/message_loop/message_loop.h" 11 #include "base/message_loop/message_loop.h"
12 #include "public/platform/scheduler/child/child_scheduler.h"
13 #include "public/platform/scheduler/child/single_thread_idle_task_runner.h"
14 #include "public/platform/scheduler/renderer/render_widget_scheduling_state.h"
15 #include "public/platform/WebCommon.h" 12 #include "public/platform/WebCommon.h"
16 #include "public/platform/WebInputEvent.h" 13 #include "public/platform/WebInputEvent.h"
17 #include "public/platform/WebInputEventResult.h" 14 #include "public/platform/WebInputEventResult.h"
18 #include "public/platform/WebScheduler.h" 15 #include "public/platform/WebScheduler.h"
16 #include "public/platform/scheduler/child/child_scheduler.h"
17 #include "public/platform/scheduler/child/single_thread_idle_task_runner.h"
18 #include "public/platform/scheduler/renderer/render_widget_scheduling_state.h"
19 #include "v8/include/v8.h" 19 #include "v8/include/v8.h"
20 20
21 namespace base { 21 namespace base {
22 namespace trace_event { 22 namespace trace_event {
23 class BlameContext; 23 class BlameContext;
24 } 24 }
25 } 25 }
26 26
27 namespace cc { 27 namespace cc {
28 struct BeginFrameArgs; 28 struct BeginFrameArgs;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 protected: 196 protected:
197 RendererScheduler(); 197 RendererScheduler();
198 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); 198 DISALLOW_COPY_AND_ASSIGN(RendererScheduler);
199 }; 199 };
200 200
201 } // namespace scheduler 201 } // namespace scheduler
202 } // namespace blink 202 } // namespace blink
203 203
204 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU LER_H_ 204 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU LER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698