| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2014 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 #ifndef SKY_ENGINE_V8_INSPECTOR_READ_FROM_SOURCE_TREE_H_ |
| 6 #define SKY_ENGINE_V8_INSPECTOR_READ_FROM_SOURCE_TREE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace inspector { |
| 11 |
| 12 // TODO(eseidel): This is a horrible hack and only works when run |
| 13 // inside its source tree! crbug.com/434513 |
| 14 void ReadFileFromSourceTree(const char* name, std::string* buffer); |
| 15 |
| 16 } // namespace inspector |
| 17 |
| 18 #endif // SKY_ENGINE_V8_INSPECTOR_READ_FROM_SOURCE_TREE_H_ |
| OLD | NEW |