summaryrefslogtreecommitdiffstats
path: root/content/browser/loader/navigation_url_loader_impl.h
diff options
context:
space:
mode:
authorvishal.b <vishal.b@samsung.com>2015-04-29 05:22:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-29 12:23:36 +0000
commit782eb5db6699322664e7628cab2042c1b8920577 (patch)
tree5896e36d42ea32de0e9b1335e119df7e577bc42b /content/browser/loader/navigation_url_loader_impl.h
parent9801fc9c7beb9ec95d40b1b3d84f2542359611b6 (diff)
downloadchromium_src-782eb5db6699322664e7628cab2042c1b8920577.zip
chromium_src-782eb5db6699322664e7628cab2042c1b8920577.tar.gz
chromium_src-782eb5db6699322664e7628cab2042c1b8920577.tar.bz2
Change FrameTreeNode id from int64 to int.
The FrameTreeNode class has a browser-side and globally unique id. we need id with less bits, for example in extension APIs code exporting those ids to JavaScript. BUG=477770 TBR=sky Review URL: https://codereview.chromium.org/1093923003 Cr-Commit-Position: refs/heads/master@{#327476}
Diffstat (limited to 'content/browser/loader/navigation_url_loader_impl.h')
-rw-r--r--content/browser/loader/navigation_url_loader_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/loader/navigation_url_loader_impl.h b/content/browser/loader/navigation_url_loader_impl.h
index 1654423..f91458e 100644
--- a/content/browser/loader/navigation_url_loader_impl.h
+++ b/content/browser/loader/navigation_url_loader_impl.h
@@ -26,7 +26,7 @@ class NavigationURLLoaderImpl : public NavigationURLLoader {
public:
// The caller is responsible for ensuring that |delegate| outlives the loader.
NavigationURLLoaderImpl(BrowserContext* browser_context,
- int64 frame_tree_node_id,
+ int frame_tree_node_id,
scoped_ptr<NavigationRequestInfo> request_info,
NavigationURLLoaderDelegate* delegate);
~NavigationURLLoaderImpl() override;