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

Unified Diff: chrome/browser/chromeos/settings/owner_key_util.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
« no previous file with comments | « chrome/browser/chromeos/mobile_config.h ('k') | chrome/browser/chromeos/system/name_value_pairs_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/settings/owner_key_util.h
diff --git a/chrome/browser/chromeos/settings/owner_key_util.h b/chrome/browser/chromeos/settings/owner_key_util.h
index fc94394f73fccab4b674780c557840e6fa24e37a..2568cfad2787ab4e3ce222e5d4f9691e9a08403c 100644
--- a/chrome/browser/chromeos/settings/owner_key_util.h
+++ b/chrome/browser/chromeos/settings/owner_key_util.h
@@ -14,7 +14,9 @@
#include "base/gtest_prod_util.h"
#include "base/memory/ref_counted.h"
+namespace base {
class FilePath;
+}
namespace crypto {
class RSAPrivateKey;
@@ -59,7 +61,7 @@ class OwnerKeyUtilImpl : public OwnerKeyUtil {
// key will live.
static const char kOwnerKeyFile[];
- explicit OwnerKeyUtilImpl(const FilePath& public_key_file);
+ explicit OwnerKeyUtilImpl(const base::FilePath& public_key_file);
// OwnerKeyUtil:
virtual bool ImportPublicKey(std::vector<uint8>* output) OVERRIDE;
@@ -72,7 +74,7 @@ class OwnerKeyUtilImpl : public OwnerKeyUtil {
private:
// The file that holds the public key.
- FilePath key_file_;
+ base::FilePath key_file_;
DISALLOW_COPY_AND_ASSIGN(OwnerKeyUtilImpl);
};
« no previous file with comments | « chrome/browser/chromeos/mobile_config.h ('k') | chrome/browser/chromeos/system/name_value_pairs_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698