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

Unified Diff: content/renderer/render_view_impl.h

Issue 1355063004: Template methods on Timer classes instead of the classes themselves. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: timer: fixcaller Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | content/renderer/resource_fetcher_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index eb6ccb72f7d9cef2b0a7af9a342bb5391cc3e147..3f01b3f2dc420c334c7660638d662cd111003f51 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -827,7 +827,7 @@ class CONTENT_EXPORT RenderViewImpl
// Timer used to delay the updating of nav state (see
// StartNavStateSyncTimerIfNecessary).
- base::OneShotTimer<RenderViewImpl> nav_state_sync_timer_;
+ base::OneShotTimer nav_state_sync_timer_;
// Page IDs ------------------------------------------------------------------
// See documentation in RenderView.
@@ -900,7 +900,7 @@ class CONTENT_EXPORT RenderViewImpl
// Used to delay determining the preferred size (to avoid intermediate
// states for the sizes).
- base::OneShotTimer<RenderViewImpl> check_preferred_size_timer_;
+ base::OneShotTimer check_preferred_size_timer_;
// Bookkeeping to suppress redundant scroll and focus requests for an already
// scrolled and focused editable node.
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | content/renderer/resource_fetcher_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698