[M49_2623] Chromium upversion to m49_2623 branch.
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / browser / resource_dispatcher_host_delegate_efl.cc
index f85b34a..470eb4c 100644 (file)
@@ -30,7 +30,7 @@ void TriggerNewDownloadStartCallbackOnUIThread(
     const std::string& /*user_agent*/,
     const std::string& /*content_disposition*/,
     const std::string& /*mime_type*/,
-    int64 /*content_length*/) {
+    int64_t /*content_length*/) {
   WebContents* web_contents = WebContentsFromViewID(
     render_process_id, render_view_id);
 
@@ -97,7 +97,7 @@ void ResourceDispatcherHostDelegateEfl::DownloadStarting(
   std::string user_agent;
   std::string content_disposition;
   std::string mime_type;
-  int64 content_length = request->GetExpectedContentSize();
+  int64_t content_length = request->GetExpectedContentSize();
 
   request->extra_request_headers().GetHeader(
       net::HttpRequestHeaders::kUserAgent, &user_agent);
@@ -127,7 +127,7 @@ void ResourceDispatcherHostDelegateEfl::TriggerNewDownloadStartCallback(
     const std::string& user_agent,
     const std::string& content_disposition,
     const std::string& mime_type,
-    int64 content_length,
+    int64_t content_length,
     int render_process_id,
     int render_view_id) {
   DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));