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

Issue 9427023: Add functions to expand PostDelayedTask interface. (Closed)

Created:
8 years, 10 months ago by Ted Vessenes
Modified:
8 years, 10 months ago
CC:
chromium-reviews, jamiewalch+watch_chromium.org, dcaiafa+watch_chromium.org, sadrul, hclam+watch_chromium.org, wez+watch_chromium.org, amit, sanjeevr, jam, garykac+watch_chromium.org, joi+watch-content_chromium.org, lambroslambrou+watch_chromium.org, darin-cc_chromium.org, simonmorris+watch_chromium.org, brettw-cc_chromium.org, alexeypa+watch_chromium.org, sergeyu+watch_chromium.org
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Add functions to expand PostDelayedTask interface. These functions add TimeDelta interfaces in addition to the int ms interfaces, which will be removed at a later date. BUG=108171 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=123683

Patch Set 1 #

Patch Set 2 : Add function implementations in derived classes. #

Total comments: 3

Patch Set 3 : Fix some nits and update yet more interface. #

Patch Set 4 : Add fix to RunOnPluginThread() in host_plugin.cc #

Unified diffs Side-by-side diffs Delta from patch set Stats (+126 lines, -22 lines) Patch
M base/message_loop_proxy_impl.h View 2 chunks +8 lines, -1 line 0 comments Download
M base/message_loop_proxy_impl.cc View 2 chunks +21 lines, -4 lines 0 comments Download
M base/sequenced_task_runner.h View 1 1 chunk +5 lines, -0 lines 0 comments Download
M base/task_runner.h View 1 2 chunks +5 lines, -1 line 0 comments Download
M content/browser/browser_thread_impl.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/browser/browser_thread_impl.cc View 1 2 8 chunks +45 lines, -7 lines 0 comments Download
M content/public/browser/browser_thread.h View 2 chunks +9 lines, -0 lines 0 comments Download
M remoting/base/plugin_message_loop_proxy.h View 1 2 2 chunks +9 lines, -1 line 0 comments Download
M remoting/base/plugin_message_loop_proxy.cc View 1 2 3 chunks +17 lines, -1 line 0 comments Download
M remoting/client/plugin/pepper_plugin_thread_delegate.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M remoting/client/plugin/pepper_plugin_thread_delegate.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M remoting/host/plugin/host_plugin.cc View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 22 (0 generated)
Ted Vessenes
jar: Please review base/* sergeyu: Please review remoting/* rdsmith: Please review content/* The PostDelayedTask interface ...
8 years, 10 months ago (2012-02-21 05:20:18 UTC) #1
Randy Smith (Not in Mondays)
@tedv: My presence in content/public/browser/OWNERS is a for the download interfaces only. jam@ should review ...
8 years, 10 months ago (2012-02-21 13:28:50 UTC) #2
Ted Vessenes
On 2012/02/21 13:28:50, rdsmith wrote: > @tedv: My presence in content/public/browser/OWNERS is a for the ...
8 years, 10 months ago (2012-02-21 15:54:42 UTC) #3
jar (doing other things)
LGTM (for base)
8 years, 10 months ago (2012-02-21 18:21:31 UTC) #4
Sergey Ulanov
remoting/* lgtm
8 years, 10 months ago (2012-02-21 18:26:35 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedvessenes@gmail.com/9427023/1
8 years, 10 months ago (2012-02-21 20:52:15 UTC) #6
commit-bot: I haz the power
Presubmit check for 9427023-1 failed and returned exit status 1. Running presubmit commit checks ...
8 years, 10 months ago (2012-02-21 20:52:19 UTC) #7
Avi (use Gerrit)
content owner LGTM
8 years, 10 months ago (2012-02-21 20:55:43 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedvessenes@gmail.com/9427023/1
8 years, 10 months ago (2012-02-21 22:22:34 UTC) #9
commit-bot: I haz the power
Try job failure for 9427023-1 (retry) on linux_clang for step "compile" (clobber build). It's a ...
8 years, 10 months ago (2012-02-21 22:51:11 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedvessenes@gmail.com/9427023/1
8 years, 10 months ago (2012-02-22 00:52:42 UTC) #11
commit-bot: I haz the power
Try job failure for 9427023-1 (retry) on linux_clang for step "compile" (clobber build). It's a ...
8 years, 10 months ago (2012-02-22 01:20:31 UTC) #12
Ted Vessenes
Just as a heads up, these errors are caused by abstract base classes having interfaces ...
8 years, 10 months ago (2012-02-23 18:22:23 UTC) #13
Ted Vessenes
Alright, I had to add a few more function definitions to code in base/* and ...
8 years, 10 months ago (2012-02-24 19:16:24 UTC) #14
jar (doing other things)
http://codereview.chromium.org/9427023/diff/12001/content/browser/browser_thread_impl.cc File content/browser/browser_thread_impl.cc (right): http://codereview.chromium.org/9427023/diff/12001/content/browser/browser_thread_impl.cc#newcode195 content/browser/browser_thread_impl.cc:195: const base::Closure& task, base::TimeDelta delay) OVERRIDE{ nits: space before ...
8 years, 10 months ago (2012-02-25 02:00:22 UTC) #15
Ted Vessenes
I think I was worried about biting off too much conversation in a single CL, ...
8 years, 10 months ago (2012-02-25 04:01:43 UTC) #16
Ted Vessenes
Alright, converted more, though I stopped short of updating the full PPAPI interface, as that ...
8 years, 10 months ago (2012-02-25 06:12:48 UTC) #17
jar (doing other things)
lgtm
8 years, 10 months ago (2012-02-25 18:14:27 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedvessenes@gmail.com/9427023/18002
8 years, 10 months ago (2012-02-25 18:30:42 UTC) #19
commit-bot: I haz the power
Try job failure for 9427023-18002 (retry) on win_rel for step "compile" (clobber build). It's a ...
8 years, 10 months ago (2012-02-25 18:58:29 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedvessenes@gmail.com/9427023/12007
8 years, 10 months ago (2012-02-26 05:07:15 UTC) #21
commit-bot: I haz the power
8 years, 10 months ago (2012-02-26 08:17:40 UTC) #22
Change committed as 123683

Powered by Google App Engine
This is Rietveld 408576698