23 lines
645 B
C++
23 lines
645 B
C++
#ifndef BRIGHTRAY_BROWSER_DEFAULT_WEB_CONTENTS_DELEGATE_H_
|
|
#define BRIGHTRAY_BROWSER_DEFAULT_WEB_CONTENTS_DELEGATE_H_
|
|
|
|
#include "content/public/browser/web_contents_delegate.h"
|
|
|
|
namespace brightray {
|
|
|
|
// This class provides some sane default behaviors to any content::WebContents instance (e.g.,
|
|
// keyboard shortcut handling on Mac).
|
|
class DefaultWebContentsDelegate : public content::WebContentsDelegate {
|
|
public:
|
|
DefaultWebContentsDelegate();
|
|
~DefaultWebContentsDelegate();
|
|
|
|
protected:
|
|
#if defined(OS_MACOSX)
|
|
virtual void HandleKeyboardEvent(content::WebContents*, const content::NativeWebKeyboardEvent&) OVERRIDE;
|
|
#endif
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|