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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 10 months 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
« no previous file with comments | « chrome/browser/chromeos/boot_times_loader.cc ('k') | chrome/browser/chromeos/notifications/balloon_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chrome/browser/chromeos/boot_times_loader.cc ('k') | chrome/browser/chromeos/notifications/balloon_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698