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

Unified Diff: chrome/browser/chromeos/drive/mount_point_provider_delegate.h

Issue 18667002: Pass BrowserContext to drive::MountPointProviderDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
Index: chrome/browser/chromeos/drive/mount_point_provider_delegate.h
diff --git a/chrome/browser/chromeos/drive/mount_point_provider_delegate.h b/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
index b5a4734fe2928a05d7487e6191aa5d88dd594973..07ad8bd138a36d7c12af02992515897ceb191404 100644
--- a/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
+++ b/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
@@ -9,6 +9,10 @@
#include "base/memory/ref_counted.h"
#include "chrome/browser/chromeos/fileapi/cros_mount_point_provider_delegate.h"
+namespace content {
+class BrowserContext;
+} // namespace content
+
namespace fileapi {
class ExternalMountPoints;
} // namespace fileapi
@@ -20,8 +24,9 @@ namespace drive {
class MountPointProviderDelegate
: public chromeos::CrosMountPointProviderDelegate {
public:
+ // |browser_context| is currently used to take the ExternalMountPoints.
explicit MountPointProviderDelegate(
- fileapi::ExternalMountPoints* mount_points);
+ content::BrowserContext* browser_context);
virtual ~MountPointProviderDelegate();
// CrosMountPointProvider::Delegate overrides.

Powered by Google App Engine
This is Rietveld 408576698