Index: ppapi/shared_impl/file_path.cc |
diff --git a/ppapi/shared_impl/file_path.cc b/ppapi/shared_impl/file_path.cc |
index d05b1b3452f66790852122b421e01eaed66a91f6..248893a6ebd6b487ce8b55ed4a6f4606c2194684 100644 |
--- a/ppapi/shared_impl/file_path.cc |
+++ b/ppapi/shared_impl/file_path.cc |
@@ -6,14 +6,10 @@ |
namespace ppapi { |
-PepperFilePath::PepperFilePath() |
- : domain_(DOMAIN_INVALID), |
- path_() { |
-} |
+PepperFilePath::PepperFilePath() : domain_(DOMAIN_INVALID), path_() {} |
PepperFilePath::PepperFilePath(Domain domain, const base::FilePath& path) |
- : domain_(domain), |
- path_(path) { |
+ : domain_(domain), path_(path) { |
// TODO(viettrungluu): Should we DCHECK() some things here? |
} |