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

Unified Diff: chrome/browser/system_monitor/udev_util_linux.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/system_monitor/udev_util_linux.h
diff --git a/chrome/browser/system_monitor/udev_util_linux.h b/chrome/browser/system_monitor/udev_util_linux.h
index c138f4c9c011f4e92ac883ae0ec09fb98fd0856b..dffcb9fa22c4706eaa3b77ad1d77133aeae9bc78 100644
--- a/chrome/browser/system_monitor/udev_util_linux.h
+++ b/chrome/browser/system_monitor/udev_util_linux.h
@@ -11,7 +11,9 @@
#include "base/memory/scoped_generic_obj.h"
+namespace base {
class FilePath;
+}
namespace chrome {
@@ -42,7 +44,7 @@ std::string GetUdevDevicePropertyValue(struct udev_device* udev_device,
// Helper for udev_device_new_from_syspath()/udev_device_get_property_value()
// pair. |device_path| is the absolute path to the device, including /sys.
-bool GetUdevDevicePropertyValueByPath(const FilePath& device_path,
+bool GetUdevDevicePropertyValueByPath(const base::FilePath& device_path,
const char* key,
std::string* result);

Powered by Google App Engine
This is Rietveld 408576698