| Index: chrome/browser/tab_contents/tab_contents.h
|
| diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h
|
| index 2a69a1431aa83b360b81e0204a51751a226efbbb..5d9ec0d8016f6288f92d20a08c49e94ca8e4dc1e 100644
|
| --- a/chrome/browser/tab_contents/tab_contents.h
|
| +++ b/chrome/browser/tab_contents/tab_contents.h
|
| @@ -883,7 +883,7 @@ class TabContents : public PageNavigator,
|
|
|
| // RenderViewHostDelegate::Resource implementation.
|
| virtual void DidStartProvisionalLoadForFrame(RenderViewHost* render_view_host,
|
| - long long frame_id,
|
| + int64 frame_id,
|
| bool is_main_frame,
|
| const GURL& url);
|
| virtual void DidStartReceivingResourceResponse(
|
| @@ -902,13 +902,13 @@ class TabContents : public PageNavigator,
|
| virtual void DidRunInsecureContent(const std::string& security_origin);
|
| virtual void DidFailProvisionalLoadWithError(
|
| RenderViewHost* render_view_host,
|
| - long long frame_id,
|
| + int64 frame_id,
|
| bool is_main_frame,
|
| int error_code,
|
| const GURL& url,
|
| bool showing_repost_interstitial);
|
| - virtual void DocumentLoadedInFrame(long long frame_id);
|
| - virtual void DidFinishLoad(long long frame_id);
|
| + virtual void DocumentLoadedInFrame(int64 frame_id);
|
| + virtual void DidFinishLoad(int64 frame_id);
|
|
|
| // RenderViewHostDelegate implementation.
|
| virtual RenderViewHostDelegate::View* GetViewDelegate();
|
|
|