Commit c5eeb9ae authored by achuith@chromium.org's avatar achuith@chromium.org

Remove unused var.

BUG=NONE
TEST=compiles.

Review URL: https://chromiumcodereview.appspot.com/10829290

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151185 0039d316-1c4b-4281-b951-d872f2087c98
parent 7cfd058d
...@@ -1807,7 +1807,6 @@ TEST_F(GDataFileSystemTest, RemoveEntries) { ...@@ -1807,7 +1807,6 @@ TEST_F(GDataFileSystemTest, RemoveEntries) {
scoped_ptr<GDataEntryProto> file_in_root_proto = GetEntryInfoByPathSync( scoped_ptr<GDataEntryProto> file_in_root_proto = GetEntryInfoByPathSync(
file_in_root); file_in_root);
ASSERT_TRUE(file_in_root_proto.get()); ASSERT_TRUE(file_in_root_proto.get());
std::string file_in_root_resource_id = file_in_root_proto->resource_id();
ASSERT_TRUE(EntryExists(dir_in_root)); ASSERT_TRUE(EntryExists(dir_in_root));
scoped_ptr<GDataEntryProto> dir_in_root_proto = GetEntryInfoByPathSync( scoped_ptr<GDataEntryProto> dir_in_root_proto = GetEntryInfoByPathSync(
...@@ -1819,7 +1818,6 @@ TEST_F(GDataFileSystemTest, RemoveEntries) { ...@@ -1819,7 +1818,6 @@ TEST_F(GDataFileSystemTest, RemoveEntries) {
scoped_ptr<GDataEntryProto> file_in_subdir_proto = GetEntryInfoByPathSync( scoped_ptr<GDataEntryProto> file_in_subdir_proto = GetEntryInfoByPathSync(
file_in_subdir); file_in_subdir);
ASSERT_TRUE(file_in_subdir_proto.get()); ASSERT_TRUE(file_in_subdir_proto.get());
std::string file_in_subdir_resource_id = file_in_subdir_proto->resource_id();
// Once for file in root and once for file... // Once for file in root and once for file...
EXPECT_CALL(*mock_directory_observer_, OnDirectoryChanged( EXPECT_CALL(*mock_directory_observer_, OnDirectoryChanged(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment