| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8StackTrace.h
 | 
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8StackTrace.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8StackTrace.h
 | 
| index 2e00860b8fa65fcd1b672c7e4ed22289f55f8545..6d5d898c8e83de0a9a70044f13389507ecc36d11 100644
 | 
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8StackTrace.h
 | 
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8StackTrace.h
 | 
| @@ -26,15 +26,15 @@ public:
 | 
|      static const size_t maxCallStackSizeToCapture = 200;
 | 
|  
 | 
|      virtual bool isEmpty() const = 0;
 | 
| -    virtual String topSourceURL() const = 0;
 | 
| +    virtual String16 topSourceURL() const = 0;
 | 
|      virtual int topLineNumber() const = 0;
 | 
|      virtual int topColumnNumber() const = 0;
 | 
| -    virtual String topScriptId() const = 0;
 | 
| -    virtual String topFunctionName() const = 0;
 | 
| +    virtual String16 topScriptId() const = 0;
 | 
| +    virtual String16 topFunctionName() const = 0;
 | 
|  
 | 
|      virtual ~V8StackTrace() { }
 | 
|      virtual PassOwnPtr<protocol::Runtime::StackTrace> buildInspectorObject() const = 0;
 | 
| -    virtual String toString() const = 0;
 | 
| +    virtual String16 toString() const = 0;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |