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

Side by Side Diff: chrome/browser/system_monitor/test_removable_storage_notifications.cc

Issue 11573048: [Media Galleries] Move RemovableStorageInfo notifications to chrome namespace (part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Working on windows Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/system_monitor/test_removable_storage_notifications.h"
6
7 namespace chrome {
8 namespace test {
9
10 TestRemovableStorageNotifications::TestRemovableStorageNotifications()
11 : RemovableStorageNotifications() {}
12
13 TestRemovableStorageNotifications::~TestRemovableStorageNotifications() {}
14
15 bool TestRemovableStorageNotifications::GetDeviceInfoForPath(
16 const FilePath& path,
17 StorageInfo* device_info) const {
18 return false;
19 }
20
21 uint64 TestRemovableStorageNotifications::GetStorageSize(
22 const std::string& location) const {
23 return 0;
24 }
25
26 #if defined(OS_WIN)
27 bool TestRemovableStorageNotifications::GetMTPStorageInfoFromDeviceId(
28 const std::string& storage_device_id,
29 string16* device_location,
30 string16* storage_object_id) const {
31 return false;
32 }
33 #endif
34
35 } // namespace test
36 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698