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

Unified Diff: chrome/browser/tab_contents/tab_contents.h

Issue 4997001: C++ readability change for jochen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/extensions
Patch Set: more long long to int64 Created 10 years, 1 month 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/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();
« no previous file with comments | « chrome/browser/tab_contents/provisional_load_details.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698