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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 1244443003: android: Use a hard coded BeginFrame deadline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 (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 "content/browser/renderer_host/render_widget_host_impl.h" 5 #include "content/browser/renderer_host/render_widget_host_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 2071 matching lines...) Expand 10 before | Expand all | Expand 10 after
2082 RenderWidgetHostImpl::GetRootBrowserAccessibilityManager() { 2082 RenderWidgetHostImpl::GetRootBrowserAccessibilityManager() {
2083 return delegate_ ? delegate_->GetRootBrowserAccessibilityManager() : NULL; 2083 return delegate_ ? delegate_->GetRootBrowserAccessibilityManager() : NULL;
2084 } 2084 }
2085 2085
2086 BrowserAccessibilityManager* 2086 BrowserAccessibilityManager*
2087 RenderWidgetHostImpl::GetOrCreateRootBrowserAccessibilityManager() { 2087 RenderWidgetHostImpl::GetOrCreateRootBrowserAccessibilityManager() {
2088 return delegate_ ? 2088 return delegate_ ?
2089 delegate_->GetOrCreateRootBrowserAccessibilityManager() : NULL; 2089 delegate_->GetOrCreateRootBrowserAccessibilityManager() : NULL;
2090 } 2090 }
2091 2091
2092 base::TimeDelta RenderWidgetHostImpl::GetEstimatedBrowserCompositeTime() const {
2093 return latency_tracker_.GetEstimatedBrowserCompositeTime();
2094 }
2095
2096 #if defined(OS_WIN) 2092 #if defined(OS_WIN)
2097 gfx::NativeViewAccessible 2093 gfx::NativeViewAccessible
2098 RenderWidgetHostImpl::GetParentNativeViewAccessible() { 2094 RenderWidgetHostImpl::GetParentNativeViewAccessible() {
2099 return delegate_ ? delegate_->GetParentNativeViewAccessible() : NULL; 2095 return delegate_ ? delegate_->GetParentNativeViewAccessible() : NULL;
2100 } 2096 }
2101 #endif 2097 #endif
2102 2098
2103 } // namespace content 2099 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698