| Index: chrome/browser/chromeos/cros/mock_mount_library.cc | 
| =================================================================== | 
| --- chrome/browser/chromeos/cros/mock_mount_library.cc	(revision 93731) | 
| +++ chrome/browser/chromeos/cros/mock_mount_library.cc	(working copy) | 
| @@ -40,6 +40,8 @@ | 
| .WillByDefault(Invoke(this, &MockMountLibrary::RemoveObserverInternal)); | 
| ON_CALL(*this, disks()) | 
| .WillByDefault(Invoke(this, &MockMountLibrary::disksInternal)); | 
| +  ON_CALL(*this, mount_points()) | 
| +      .WillByDefault(Invoke(this, &MockMountLibrary::mountPointsInternal)); | 
| } | 
|  | 
| MockMountLibrary::~MockMountLibrary() { | 
| @@ -128,7 +130,7 @@ | 
| .WillRepeatedly(ReturnRef(disks_)); | 
| EXPECT_CALL(*this, RequestMountInfoRefresh()) | 
| .Times(AnyNumber()); | 
| -  EXPECT_CALL(*this, MountPath(_)) | 
| +  EXPECT_CALL(*this, MountPath(_, _, _)) | 
| .Times(AnyNumber()); | 
| EXPECT_CALL(*this, UnmountPath(_)) | 
| .Times(AnyNumber()); | 
|  |