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

Unified Diff: chrome/browser/automation/automation_resource_routing_delegate.h

Issue 3012001: Move implementation from header to source. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: blank line Created 10 years, 5 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_routing_delegate.h
diff --git a/chrome/browser/automation/automation_resource_routing_delegate.h b/chrome/browser/automation/automation_resource_routing_delegate.h
index 63c95deab92c419dd03fe19ecb24e31bf38e73a5..2438e4d3c876184a4cdd0835399bb417f948e6ca 100644
--- a/chrome/browser/automation/automation_resource_routing_delegate.h
+++ b/chrome/browser/automation/automation_resource_routing_delegate.h
@@ -15,14 +15,14 @@ class AutomationResourceRoutingDelegate {
public:
// Call to register |render_view_host| for resource routing automation
// by the delegate.
- virtual void RegisterRenderViewHost(RenderViewHost* render_view_host) {}
+ virtual void RegisterRenderViewHost(RenderViewHost* render_view_host);
// Call to unregister |render_view_host| from resource routing automation.
- virtual void UnregisterRenderViewHost(RenderViewHost* render_view_host) {}
+ virtual void UnregisterRenderViewHost(RenderViewHost* render_view_host);
protected:
- AutomationResourceRoutingDelegate() {}
- virtual ~AutomationResourceRoutingDelegate() {}
+ AutomationResourceRoutingDelegate();
+ virtual ~AutomationResourceRoutingDelegate();
private:
DISALLOW_COPY_AND_ASSIGN(AutomationResourceRoutingDelegate);

Powered by Google App Engine
This is Rietveld 408576698