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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_proxy.h

Issue 10386206: RefCounted types should not have public destructors, chromeos edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to r143931 Created 8 years, 6 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/gdata/gdata_file_system_proxy.h
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
index 39b1008e92bc47872105819acaeda425efa889b6..34036dff7971cd518e7734007a2790901dbc6299 100644
--- a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
+++ b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
@@ -23,7 +23,6 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
// |profile| is used to create GDataFileSystem, which is a per-profile
// instance.
explicit GDataFileSystemProxy(GDataFileSystemInterface* file_system);
- virtual ~GDataFileSystemProxy();
// fileapi::RemoteFileSystemProxyInterface overrides.
virtual void GetFileInfo(const GURL& path,
@@ -65,6 +64,9 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
callback) OVERRIDE;
// TODO(zelidrag): More methods to follow as we implement other parts of FSO.
+ protected:
+ virtual ~GDataFileSystemProxy();
+
private:
// Checks if a given |url| belongs to this file system. If it does,
// the call will return true and fill in |file_path| with a file path of
« no previous file with comments | « chrome/browser/chromeos/extensions/file_handler_util.h ('k') | chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698