Index: chrome/browser/chromeos/extensions/file_browser_private_api.cc |
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.cc b/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
index 81390493f3f592395902741644a347de18e10275..117c2374e962ca252beba55c1c3c187d346db954 100644 |
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
@@ -606,7 +606,7 @@ void RequestLocalFileSystemFunction::RequestOnFileThread( |
} |
bool RequestLocalFileSystemFunction::RunImpl() { |
- if (!dispatcher() || !render_view_host() || !render_view_host()->process()) |
+ if (!dispatcher() || !render_view_host() || !render_view_host()->GetProcess()) |
return false; |
BrowserThread::PostTask( |
@@ -615,7 +615,7 @@ bool RequestLocalFileSystemFunction::RunImpl() { |
&RequestLocalFileSystemFunction::RequestOnFileThread, |
this, |
source_url_, |
- render_view_host()->process()->GetID())); |
+ render_view_host()->GetProcess()->GetID())); |
// Will finish asynchronously. |
return true; |
} |
@@ -668,7 +668,7 @@ void FileWatchBrowserFunctionBase::RespondOnUIThread(bool success) { |
} |
bool FileWatchBrowserFunctionBase::RunImpl() { |
- if (!render_view_host() || !render_view_host()->process()) |
+ if (!render_view_host() || !render_view_host()->GetProcess()) |
return false; |
// First param is url of a file to watch. |