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

Side by Side Diff: webkit/child/webkitplatformsupport_impl.cc

Issue 52663003: Remove all fling related stuff from the renderer assuming that browser side Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « webkit/child/webkitplatformsupport_child_impl.cc ('k') | webkit/glue/webkit_glue.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "webkit/child/webkitplatformsupport_impl.h" 5 #include "webkit/child/webkitplatformsupport_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "base/time/time.h" 28 #include "base/time/time.h"
29 #include "grit/blink_resources.h" 29 #include "grit/blink_resources.h"
30 #include "grit/webkit_resources.h" 30 #include "grit/webkit_resources.h"
31 #include "grit/webkit_strings.h" 31 #include "grit/webkit_strings.h"
32 #include "net/base/data_url.h" 32 #include "net/base/data_url.h"
33 #include "net/base/mime_util.h" 33 #include "net/base/mime_util.h"
34 #include "net/base/net_errors.h" 34 #include "net/base/net_errors.h"
35 #include "third_party/WebKit/public/platform/WebCookie.h" 35 #include "third_party/WebKit/public/platform/WebCookie.h"
36 #include "third_party/WebKit/public/platform/WebData.h" 36 #include "third_party/WebKit/public/platform/WebData.h"
37 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h" 37 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h"
38 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
39 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" 38 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h"
40 #include "third_party/WebKit/public/platform/WebString.h" 39 #include "third_party/WebKit/public/platform/WebString.h"
41 #include "third_party/WebKit/public/platform/WebURL.h" 40 #include "third_party/WebKit/public/platform/WebURL.h"
42 #include "third_party/WebKit/public/platform/WebVector.h" 41 #include "third_party/WebKit/public/platform/WebVector.h"
43 #include "third_party/WebKit/public/web/WebFrameClient.h" 42 #include "third_party/WebKit/public/web/WebFrameClient.h"
44 #include "third_party/WebKit/public/web/WebInputEvent.h" 43 #include "third_party/WebKit/public/web/WebInputEvent.h"
45 #include "third_party/WebKit/public/web/WebScreenInfo.h" 44 #include "third_party/WebKit/public/web/WebScreenInfo.h"
46 #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h" 45 #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h"
47 #include "ui/base/layout.h" 46 #include "ui/base/layout.h"
48 #include "webkit/child/webkit_child_helpers.h" 47 #include "webkit/child/webkit_child_helpers.h"
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 if (--shared_timer_suspended_ == 0 && 924 if (--shared_timer_suspended_ == 0 &&
926 (!shared_timer_.IsRunning() || 925 (!shared_timer_.IsRunning() ||
927 shared_timer_fire_time_was_set_while_suspended_)) { 926 shared_timer_fire_time_was_set_while_suspended_)) {
928 shared_timer_fire_time_was_set_while_suspended_ = false; 927 shared_timer_fire_time_was_set_while_suspended_ = false;
929 setSharedTimerFireInterval( 928 setSharedTimerFireInterval(
930 shared_timer_fire_time_ - monotonicallyIncreasingTime()); 929 shared_timer_fire_time_ - monotonicallyIncreasingTime());
931 } 930 }
932 } 931 }
933 932
934 } // namespace webkit_glue 933 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/child/webkitplatformsupport_child_impl.cc ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698