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

Unified Diff: components/filesystem/files_test_base.h

Issue 1718123004: mojo filesystem: Further clean ups. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jam comments Created 4 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 | « components/filesystem/file_system_impl.cc ('k') | components/filesystem/files_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/filesystem/files_test_base.h
diff --git a/components/filesystem/files_test_base.h b/components/filesystem/files_test_base.h
index 04499496b2b7f54e4c300bf8ba5d6e2767ff1094..8ce96c079f9a426ad5c7b716cc61b0097216209d 100644
--- a/components/filesystem/files_test_base.h
+++ b/components/filesystem/files_test_base.h
@@ -12,8 +12,7 @@
namespace filesystem {
-class FilesTestBase : public mojo::test::ApplicationTestBase,
- public filesystem::FileSystemClient {
+class FilesTestBase : public mojo::test::ApplicationTestBase {
public:
FilesTestBase();
~FilesTestBase() override;
@@ -21,9 +20,6 @@ class FilesTestBase : public mojo::test::ApplicationTestBase,
// Overridden from mojo::test::ApplicationTestBase:
void SetUp() override;
- // Overridden from FileSystemClient:
- void OnFileSystemShutdown() override;
-
protected:
// Note: This has an out parameter rather than returning the |DirectoryPtr|,
// since |ASSERT_...()| doesn't work with return values.
@@ -32,7 +28,6 @@ class FilesTestBase : public mojo::test::ApplicationTestBase,
FileSystemPtr& files() { return files_; }
private:
- mojo::Binding<filesystem::FileSystemClient> binding_;
FileSystemPtr files_;
DISALLOW_COPY_AND_ASSIGN(FilesTestBase);
« no previous file with comments | « components/filesystem/file_system_impl.cc ('k') | components/filesystem/files_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698