| Index: dbus/string_util.cc
 | 
| diff --git a/dbus/string_util.cc b/dbus/string_util.cc
 | 
| index 0323e4ad06758962e253da1db82ccf54b5dea273..0b0778603088ccfe3ee649a38c3a1505f1572bc4 100644
 | 
| --- a/dbus/string_util.cc
 | 
| +++ b/dbus/string_util.cc
 | 
| @@ -39,7 +39,7 @@ bool IsValidObjectPath(const std::string& value) {
 | 
|    }
 | 
|  
 | 
|    // A trailing '/' character is not allowed unless the path is the root path.
 | 
| -  if (value.size() > 1 && EndsWith(value, "/", kCaseSensitive))
 | 
| +  if (value.size() > 1 && base::EndsWith(value, "/", kCaseSensitive))
 | 
|      return false;
 | 
|  
 | 
|    return true;
 | 
| 
 |