| Index: src/base/file-utils.cc
 | 
| diff --git a/src/base/file-utils.cc b/src/base/file-utils.cc
 | 
| index 2262df97d0351c825198a07be2b9dce82aa0bb11..31b1b411908dc90be182c96f68c7a53433de5950 100644
 | 
| --- a/src/base/file-utils.cc
 | 
| +++ b/src/base/file-utils.cc
 | 
| @@ -10,13 +10,13 @@
 | 
|  #include "src/base/platform/platform.h"
 | 
|  
 | 
|  namespace v8 {
 | 
| -namespace internal {
 | 
| +namespace base {
 | 
|  
 | 
|  char* RelativePath(char** buffer, const char* exec_path, const char* name) {
 | 
|    DCHECK(exec_path);
 | 
|    int path_separator = static_cast<int>(strlen(exec_path)) - 1;
 | 
|    while (path_separator >= 0 &&
 | 
| -         !base::OS::isDirectorySeparator(exec_path[path_separator])) {
 | 
| +         !OS::isDirectorySeparator(exec_path[path_separator])) {
 | 
|      path_separator--;
 | 
|    }
 | 
|    if (path_separator >= 0) {
 | 
| @@ -32,5 +32,5 @@
 | 
|    return *buffer;
 | 
|  }
 | 
|  
 | 
| -}  // namespace internal
 | 
| +}  // namespace base
 | 
|  }  // namespace v8
 | 
| 
 |