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

Side by Side Diff: chrome/browser/chromeos/file_manager/fake_disk_mount_manager.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ 6 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/macros.h"
13 #include "base/observer_list.h" 13 #include "base/observer_list.h"
14 #include "chromeos/dbus/cros_disks_client.h" 14 #include "chromeos/dbus/cros_disks_client.h"
15 #include "chromeos/disks/disk_mount_manager.h" 15 #include "chromeos/disks/disk_mount_manager.h"
16 16
17 namespace file_manager { 17 namespace file_manager {
18 18
19 class FakeDiskMountManager : public chromeos::disks::DiskMountManager { 19 class FakeDiskMountManager : public chromeos::disks::DiskMountManager {
20 public: 20 public:
21 struct MountRequest { 21 struct MountRequest {
22 MountRequest(const std::string& source_path, 22 MountRequest(const std::string& source_path,
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 std::vector<MountRequest> mount_requests_; 83 std::vector<MountRequest> mount_requests_;
84 std::vector<UnmountRequest> unmount_requests_; 84 std::vector<UnmountRequest> unmount_requests_;
85 85
86 DISALLOW_COPY_AND_ASSIGN(FakeDiskMountManager); 86 DISALLOW_COPY_AND_ASSIGN(FakeDiskMountManager);
87 }; 87 };
88 88
89 } // namespace file_manager 89 } // namespace file_manager
90 90
91 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_ 91 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FAKE_DISK_MOUNT_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/external_protocol_dialog.h ('k') | chrome/browser/chromeos/file_manager/file_browser_handlers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698