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

Side by Side Diff: chrome/browser/system_monitor/test_volume_mount_watcher_win.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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 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 // TestVolumeMountWatcherWin implementation. 5 // TestVolumeMountWatcherWin implementation.
6 6
7 #include "chrome/browser/system_monitor/test_volume_mount_watcher_win.h" 7 #include "chrome/browser/system_monitor/test_volume_mount_watcher_win.h"
8 8
9 #include "base/bind.h"
9 #include "base/file_path.h" 10 #include "base/file_path.h"
10 11
11 namespace chrome { 12 namespace chrome {
12 namespace test { 13 namespace test {
13 14
14 namespace { 15 namespace {
15 16
16 std::vector<FilePath> NoAttachedDevices() { 17 std::vector<FilePath> NoAttachedDevices() {
17 std::vector<FilePath> result; 18 std::vector<FilePath> result;
18 return result; 19 return result;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 string16* device_location, 126 string16* device_location,
126 std::string* unique_id, 127 std::string* unique_id,
127 string16* name, 128 string16* name,
128 bool* removable) { 129 bool* removable) {
129 return GetMassStorageDeviceDetails( 130 return GetMassStorageDeviceDetails(
130 device_path, device_location, unique_id, name, removable); 131 device_path, device_location, unique_id, name, removable);
131 } 132 }
132 133
133 } // namespace test 134 } // namespace test
134 } // namespace chrome 135 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698