| Index: chrome/browser/instant/instant_loader.cc
|
| diff --git a/chrome/browser/instant/instant_loader.cc b/chrome/browser/instant/instant_loader.cc
|
| index b28fdc654de9ea38a96070194de439a5c1b83de5..7f64072c38bc251480da8e92992ebc2a0ac5e881 100644
|
| --- a/chrome/browser/instant/instant_loader.cc
|
| +++ b/chrome/browser/instant/instant_loader.cc
|
| @@ -248,6 +248,10 @@ void InstantLoader::SetMarginSize(int start, int end) {
|
| client_.SetMarginSize(start, end);
|
| }
|
|
|
| +void InstantLoader::InitializeFonts() {
|
| + client_.InitializeFonts();
|
| +}
|
| +
|
| void InstantLoader::SendAutocompleteResults(
|
| const std::vector<InstantAutocompleteResult>& results) {
|
| client_.SendAutocompleteResults(results);
|
| @@ -324,6 +328,10 @@ void InstantLoader::NavigateToURL(const GURL& url,
|
| controller_->NavigateToURL(url, transition);
|
| }
|
|
|
| +void InstantLoader::RenderViewCreated() {
|
| + controller_->InstantLoaderRenderViewCreated();
|
| +}
|
| +
|
| void InstantLoader::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
|
|