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

Side by Side Diff: chrome/browser/chromeos/gdata/mock_gdata_file_system.h

Issue 9947002: Wired preference that hides hosted documents for the directory view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/chromeos/gdata/gdata_file_system.h" 9 #include "chrome/browser/chromeos/gdata/gdata_file_system.h"
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 CachedFileOrigin)); 78 CachedFileOrigin));
79 MOCK_METHOD1(GetAvailableSpace, 79 MOCK_METHOD1(GetAvailableSpace,
80 void(const GetAvailableSpaceCallback& callback)); 80 void(const GetAvailableSpaceCallback& callback));
81 MOCK_METHOD3(SetPinState, void(const FilePath&, 81 MOCK_METHOD3(SetPinState, void(const FilePath&,
82 bool, 82 bool,
83 const FileOperationCallback& callback)); 83 const FileOperationCallback& callback));
84 MOCK_METHOD4(AddUploadedFile, void(const FilePath& file, 84 MOCK_METHOD4(AddUploadedFile, void(const FilePath& file,
85 DocumentEntry* entry, 85 DocumentEntry* entry,
86 const FilePath& file_content_path, 86 const FilePath& file_content_path,
87 FileOperationType cache_operation)); 87 FileOperationType cache_operation));
88 MOCK_METHOD0(hide_hosted_documents, bool());
88 }; 89 };
89 90
90 } // namespace gdata 91 } // namespace gdata
91 92
92 #endif // CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_ 93 #endif // CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698