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

Unified Diff: chrome/browser/automation/automation_resource_message_filter.cc

Issue 174345: Making RegisterRequest and UnregisterRequest virtual so that they can be over... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 4 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
Index: chrome/browser/automation/automation_resource_message_filter.cc
===================================================================
--- chrome/browser/automation/automation_resource_message_filter.cc (revision 24090)
+++ chrome/browser/automation/automation_resource_message_filter.cc (working copy)
@@ -20,9 +20,10 @@
MessageLoop* AutomationResourceMessageFilter::io_loop_ = NULL;
AutomationResourceMessageFilter::RenderViewMap
AutomationResourceMessageFilter::filtered_render_views_;
+int AutomationResourceMessageFilter::unique_request_id_ = 1;
AutomationResourceMessageFilter::AutomationResourceMessageFilter()
- : channel_(NULL), unique_request_id_(1) {
+ : channel_(NULL) {
URLRequestAutomationJob::InitializeInterceptor();
}

Powered by Google App Engine
This is Rietveld 408576698