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

Side by Side Diff: chrome/browser/storage_monitor/image_capture_device_manager.h

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_ 5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_
6 #define CHROME_BROWSER_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_ 6 #define CHROME_BROWSER_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/scoped_nsobject.h" 11 #include "base/mac/scoped_nsobject.h"
12 #include "chrome/browser/storage_monitor/storage_monitor.h" 12 #include "chrome/browser/storage_monitor/storage_monitor.h"
13 13
14 @protocol ICDeviceBrowserDelegate; 14 @protocol ICDeviceBrowserDelegate;
15 @class ImageCaptureDevice; 15 @class ImageCaptureDevice;
16 @class ImageCaptureDeviceManagerImpl; 16 @class ImageCaptureDeviceManagerImpl;
17 17
18 namespace chrome { 18 namespace chrome {
19 19
20 // Upon creation, begins monitoring for any attached devices using the 20 // Upon creation, begins monitoring for any attached devices using the
21 // ImageCapture API. Notifies clients of the presence of such devices 21 // ImageCapture API. Notifies clients of the presence of such devices
(...skipping 10 matching lines...) Expand all
32 static ImageCaptureDevice* deviceForUUID(const std::string& uuid); 32 static ImageCaptureDevice* deviceForUUID(const std::string& uuid);
33 33
34 // Returns a weak pointer to the internal ImageCapture interface protocol. 34 // Returns a weak pointer to the internal ImageCapture interface protocol.
35 id<ICDeviceBrowserDelegate> device_browser(); 35 id<ICDeviceBrowserDelegate> device_browser();
36 36
37 // Sets the receiver for device attach/detach notifications. 37 // Sets the receiver for device attach/detach notifications.
38 // TODO(gbillock): Move this to be a constructor argument. 38 // TODO(gbillock): Move this to be a constructor argument.
39 void SetNotifications(StorageMonitor::Receiver* notifications); 39 void SetNotifications(StorageMonitor::Receiver* notifications);
40 40
41 private: 41 private:
42 scoped_nsobject<ImageCaptureDeviceManagerImpl> device_browser_; 42 base::scoped_nsobject<ImageCaptureDeviceManagerImpl> device_browser_;
43 }; 43 };
44 44
45 } // namespace chrome 45 } // namespace chrome
46 46
47 #endif // CHROME_BROWSER_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_ 47 #endif // CHROME_BROWSER_STORAGE_MONITOR_IMAGE_CAPTURE_DEVICE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698