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

Unified Diff: chrome/browser/extensions/extension_process_manager.cc

Issue 12189018: <webview>: Implement WebRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT + cleanup Created 7 years, 7 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 | « chrome/browser/extensions/event_router.cc ('k') | chrome/browser/webview/webview_guest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_process_manager.cc
diff --git a/chrome/browser/extensions/extension_process_manager.cc b/chrome/browser/extensions/extension_process_manager.cc
index 6a6993c2c5d9e963eaec3ef7ebe98553fc0c8519..46757d109203d0263baf8e94aff6b8f5653b32a0 100644
--- a/chrome/browser/extensions/extension_process_manager.cc
+++ b/chrome/browser/extensions/extension_process_manager.cc
@@ -429,6 +429,8 @@ int ExtensionProcessManager::DecrementLazyKeepaliveCount(
return 0;
int& count = background_page_data_[extension->id()].lazy_keepalive_count;
+ // TODO(fsamuel): What to do here? This fires when using WebRequests in
+ // <webview>.
Matt Perry 2013/05/16 21:16:38 still?
Fady Samuel 2013/05/17 03:02:33 No, this has been fixed. This is a stale comment.
DCHECK_GT(count, 0);
if (--count == 0) {
MessageLoop::current()->PostDelayedTask(
« no previous file with comments | « chrome/browser/extensions/event_router.cc ('k') | chrome/browser/webview/webview_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698