Index: chrome/browser/instant/instant_loader_manager.h |
diff --git a/chrome/browser/instant/instant_loader_manager.h b/chrome/browser/instant/instant_loader_manager.h |
index b648f25158e9272d8c7c1fe010dc2cecf671da82..7f2d995559c9ec9d9cbed8a83bf8f62e766c51ff 100644 |
--- a/chrome/browser/instant/instant_loader_manager.h |
+++ b/chrome/browser/instant/instant_loader_manager.h |
@@ -65,6 +65,10 @@ class InstantLoaderManager { |
// If |loader| is in |instant_loaders_| it is removed. |
void RemoveLoaderFromInstant(InstantLoader* loader); |
+ // Returns the loader for loading instant results with the specified id. If |
+ // there is no loader for the specified id a new one is created. |
+ InstantLoader* GetInstantLoader(TemplateURLID id); |
+ |
// Returns the current loader, may be null. |
InstantLoader* current_loader() const { return current_loader_; } |
@@ -87,10 +91,6 @@ class InstantLoaderManager { |
// Creates a loader and if |id| is non-zero registers it in instant_loaders_. |
InstantLoader* CreateLoader(TemplateURLID id); |
- // Returns the loader for loading instant results with the specified id. If |
- // there is no loader for the specified id a new one is created. |
- InstantLoader* GetInstantLoader(TemplateURLID id); |
- |
InstantLoaderDelegate* loader_delegate_; |
// The current loader. |