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

Side by Side Diff: content/child/blink_platform_impl.h

Issue 1550563002: Blink Platform: Remove time functions from Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merrrge agaaain. Created 4 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
« no previous file with comments | « no previous file | content/child/blink_platform_impl.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 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 CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 virtual blink::WebString queryLocalizedString( 117 virtual blink::WebString queryLocalizedString(
118 blink::WebLocalizedString::Name name, 118 blink::WebLocalizedString::Name name,
119 int numeric_value); 119 int numeric_value);
120 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name, 120 blink::WebString queryLocalizedString(blink::WebLocalizedString::Name name,
121 const blink::WebString& value) override; 121 const blink::WebString& value) override;
122 blink::WebString queryLocalizedString( 122 blink::WebString queryLocalizedString(
123 blink::WebLocalizedString::Name name, 123 blink::WebLocalizedString::Name name,
124 const blink::WebString& value1, 124 const blink::WebString& value1,
125 const blink::WebString& value2) override; 125 const blink::WebString& value2) override;
126 void suddenTerminationChanged(bool enabled) override {} 126 void suddenTerminationChanged(bool enabled) override {}
127 double currentTimeSeconds() override;
128 double monotonicallyIncreasingTimeSeconds() override;
129 blink::WebThread* compositorThread() const override; 127 blink::WebThread* compositorThread() const override;
130 blink::WebGestureCurve* createFlingAnimationCurve( 128 blink::WebGestureCurve* createFlingAnimationCurve(
131 blink::WebGestureDevice device_source, 129 blink::WebGestureDevice device_source,
132 const blink::WebFloatPoint& velocity, 130 const blink::WebFloatPoint& velocity,
133 const blink::WebSize& cumulative_scroll) override; 131 const blink::WebSize& cumulative_scroll) override;
134 void didStartWorkerThread() override; 132 void didStartWorkerThread() override;
135 void willStopWorkerThread() override; 133 void willStopWorkerThread() override;
136 blink::WebCrypto* crypto() override; 134 blink::WebCrypto* crypto() override;
137 blink::WebGeofencingProvider* geofencingProvider() override; 135 blink::WebGeofencingProvider* geofencingProvider() override;
138 blink::WebNotificationManager* notificationManager() override; 136 blink::WebNotificationManager* notificationManager() override;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 scoped_refptr<PushDispatcher> push_dispatcher_; 175 scoped_refptr<PushDispatcher> push_dispatcher_;
178 scoped_ptr<PermissionDispatcher> permission_client_; 176 scoped_ptr<PermissionDispatcher> permission_client_;
179 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; 177 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
180 178
181 scheduler::WebThreadBase* compositor_thread_; 179 scheduler::WebThreadBase* compositor_thread_;
182 }; 180 };
183 181
184 } // namespace content 182 } // namespace content
185 183
186 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 184 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698