Removed whitespace and added vector import

This commit is contained in:
Corne Dorrestijn 2014-08-13 14:24:35 +02:00
parent dec05988f4
commit e9879a3e4b

View file

@ -5,6 +5,7 @@
#include "atom/browser/api/atom_api_app.h"
#include <string>
#include <vector>
#include "base/values.h"
#include "base/command_line.h"
@ -81,7 +82,7 @@ std::string App::GetDataPath() {
base::FilePath data_path = path.Append(
base::FilePath::FromUTF8Unsafe(Browser::Get()->GetName()));
// FilePath.value() returns a std::wstring in windows and
// FilePath.value() returns a std::wstring in windows and
// std::string on other platforms.
std::vector<char> writable(data_path.value().begin(),
data_path.value().end());