| Index: chrome/browser/tab_contents/tab_contents_delegate.h
|
| diff --git a/chrome/browser/tab_contents/tab_contents_delegate.h b/chrome/browser/tab_contents/tab_contents_delegate.h
|
| index f67d8bbb02be0636f36d0155c73406f209fc51cc..817bd2524b6b34ccbfd7c003eb6d5fe345c13b45 100644
|
| --- a/chrome/browser/tab_contents/tab_contents_delegate.h
|
| +++ b/chrome/browser/tab_contents/tab_contents_delegate.h
|
| @@ -123,6 +123,10 @@ class TabContentsDelegate {
|
| // call. ConstrainedWindows shouldn't be able to be blurred.
|
| virtual bool CanBlur() const { return true; }
|
|
|
| + // Whether the specified tab can be reloaded.
|
| + // Reloading can be disabled e. g. for the DevTools window.
|
| + virtual bool CanReloadContents(TabContents* source) const { return true; }
|
| +
|
| // Return the rect where to display the resize corner, if any, otherwise
|
| // an empty rect.
|
| virtual gfx::Rect GetRootWindowResizerRect() const { return gfx::Rect(); }
|
|
|