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

Unified Diff: chrome/browser/chromeos/gdata/operation_registry_unittest.cc

Issue 10918166: Wrap string literals for FilePath with FILE_PATH_LITERAL macro (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/operation_registry_unittest.cc
diff --git a/chrome/browser/chromeos/gdata/operation_registry_unittest.cc b/chrome/browser/chromeos/gdata/operation_registry_unittest.cc
index 37353447821202789eab0b709a16839f0c73b893..4d2bf487cecbf4ec74f338e9883cf9f117ec0b40 100644
--- a/chrome/browser/chromeos/gdata/operation_registry_unittest.cc
+++ b/chrome/browser/chromeos/gdata/operation_registry_unittest.cc
@@ -38,7 +38,7 @@ class MockUploadOperation : public MockOperation {
explicit MockUploadOperation(OperationRegistry* registry)
: MockOperation(registry,
OperationRegistry::OPERATION_UPLOAD,
- FilePath("/dummy/upload")) {}
+ FilePath(FILE_PATH_LITERAL("/dummy/upload"))) {}
};
class MockDownloadOperation : public MockOperation {
@@ -46,7 +46,7 @@ class MockDownloadOperation : public MockOperation {
explicit MockDownloadOperation(OperationRegistry* registry)
: MockOperation(registry,
OperationRegistry::OPERATION_DOWNLOAD,
- FilePath("/dummy/download")) {}
+ FilePath(FILE_PATH_LITERAL("/dummy/download"))) {}
};
class MockOtherOperation : public MockOperation {
@@ -54,7 +54,7 @@ class MockOtherOperation : public MockOperation {
explicit MockOtherOperation(OperationRegistry* registry)
: MockOperation(registry,
OperationRegistry::OPERATION_OTHER,
- FilePath("/dummy/other")) {}
+ FilePath(FILE_PATH_LITERAL("/dummy/other"))) {}
};
class TestObserver : public OperationRegistry::Observer {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698