| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "tools/gn/input_file.h" | |
| 6 | |
| 7 #include "base/file_util.h" | |
| 8 | |
| 9 InputFile::InputFile(const SourceFile& name) | |
| 10 : name_(name), | |
| 11 dir_(name_.GetDir()), | |
| 12 contents_loaded_(false) { | |
| 13 } | |
| 14 | |
| 15 InputFile::~InputFile() { | |
| 16 } | |
| 17 | |
| 18 void InputFile::SetContents(const std::string& c) { | |
| 19 contents_loaded_ = true; | |
| 20 contents_ = c; | |
| 21 } | |
| 22 | |
| 23 bool InputFile::Load(const base::FilePath& system_path) { | |
| 24 if (file_util::ReadFileToString(system_path, &contents_)) { | |
| 25 contents_loaded_ = true; | |
| 26 return true; | |
| 27 } | |
| 28 return false; | |
| 29 } | |
| 30 | |
| OLD | NEW |