Chromium Code Reviews| Index: content/shell/browser/shell_mac.mm |
| diff --git a/content/shell/browser/shell_mac.mm b/content/shell/browser/shell_mac.mm |
| index f332064c5ce2483a568a5042da6fc18a82ae92a8..5e48f26bf43845f596231a258f99eec2fafaf6c3 100644 |
| --- a/content/shell/browser/shell_mac.mm |
| +++ b/content/shell/browser/shell_mac.mm |
| @@ -288,6 +288,16 @@ bool Shell::PlatformHandleContextMenu( |
| return false; |
| } |
| +#if defined(TOOLKIT_VIEWS) |
| +void Shell::PlatformWebContentsFocused(WebContents* contents) { |
| + if (headless_) |
| + return; |
| + |
| + NOTIMPLEMENTED(); |
| + return; |
| +} |
| +#endif |
| + |
| void Shell::Close() { |
| if (headless_) |
| delete this; |