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

Unified Diff: chromeos/dbus/debug_daemon_client.h

Issue 270853002: Use base::File for DebugDaemonClient::GetDebugLogs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: chromeos/dbus/debug_daemon_client.h
diff --git a/chromeos/dbus/debug_daemon_client.h b/chromeos/dbus/debug_daemon_client.h
index fd1da9d8f30099c57b1386fb70be306334df1ccc..d1ed8b8835c1e81e2740093659499490f1728e2b 100644
--- a/chromeos/dbus/debug_daemon_client.h
+++ b/chromeos/dbus/debug_daemon_client.h
@@ -6,8 +6,8 @@
#define CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_
#include "base/callback.h"
+#include "base/files/file.h"
#include "base/memory/ref_counted_memory.h"
-#include "base/platform_file.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/dbus_client.h"
@@ -30,7 +30,7 @@ class CHROMEOS_EXPORT DebugDaemonClient : public DBusClient {
// Requests to store debug logs into |file| and calls |callback|
// when completed. Debug logs will be stored in the .tgz format.
- virtual void GetDebugLogs(base::PlatformFile file,
+ virtual void GetDebugLogs(base::File file,
const GetDebugLogsCallback& callback) = 0;
// Called once SetDebugMode() is complete. Takes one parameter:

Powered by Google App Engine
This is Rietveld 408576698