summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-28 16:50:27 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-28 16:50:27 +0000
commit29712f67cc49a15b91e24d87ab1bd5928e0ea3b5 (patch)
treec683bfc35faa418a8367d1c2f7c81a4153f5274d
parent440f063e99ca82c7471d5175f75df8027b00dc2f (diff)
downloadchromium_src-29712f67cc49a15b91e24d87ab1bd5928e0ea3b5.zip
chromium_src-29712f67cc49a15b91e24d87ab1bd5928e0ea3b5.tar.gz
chromium_src-29712f67cc49a15b91e24d87ab1bd5928e0ea3b5.tar.bz2
Remove a comment that doesn't make any sense.
Review URL: http://codereview.chromium.org/159509 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21850 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/renderer/renderer_main.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/renderer/renderer_main.cc b/chrome/renderer/renderer_main.cc
index 55234ec..37f0069 100644
--- a/chrome/renderer/renderer_main.cc
+++ b/chrome/renderer/renderer_main.cc
@@ -143,9 +143,8 @@ int RendererMain(const MainFunctionParams& parameters) {
startup_timer.Stop(); // End of Startup Time Measurement.
if (run_loop) {
- // Load the accelerator table from the browser executable and tell the
- // message loop to use it when translating messages.
- if (pool) pool->Recycle();
+ if (pool)
+ pool->Recycle();
MessageLoop::current()->Run();
}
}