| Index: content/browser/renderer_host/render_widget_host_view_mac.mm
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_mac.mm b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| index 68a1125825e38ee2918d6ac7dc297ee9565354dd..2ac9d6a7e845e12cff2958211a26539fb375fd1b 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| +++ b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| @@ -10,7 +10,6 @@
|
| #include "base/bind_helpers.h"
|
| #include "base/debug/trace_event.h"
|
| #include "base/logging.h"
|
| -#include "base/mac/closure_blocks_leopard_compat.h"
|
| #include "base/mac/mac_util.h"
|
| #include "base/mac/scoped_cftyperef.h"
|
| #import "base/mac/scoped_nsautorelease_pool.h"
|
| @@ -66,27 +65,6 @@ using WebKit::WebMouseEvent;
|
| using WebKit::WebMouseWheelEvent;
|
| using WebKit::WebGestureEvent;
|
|
|
| -// Declare things that are part of the 10.6 SDK.
|
| -#if !defined(MAC_OS_X_VERSION_10_6) || \
|
| - MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
|
| -enum {
|
| - NSEventTypeBeginGesture = 19,
|
| - NSEventTypeEndGesture = 20
|
| -};
|
| -
|
| -enum {
|
| - NSEventMaskBeginGesture = 1 << NSEventTypeBeginGesture,
|
| - NSEventMaskEndGesture = 1 << NSEventTypeEndGesture,
|
| -};
|
| -
|
| -typedef unsigned long long NSEventMask;
|
| -
|
| -@class NSTextInputContext;
|
| -@interface NSResponder (AppKitDetails)
|
| -- (NSTextInputContext*)inputContext;
|
| -@end
|
| -#endif // 10.6
|
| -
|
| // Declare things that are part of the 10.7 SDK.
|
| #if !defined(MAC_OS_X_VERSION_10_7) || \
|
| MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
|
|
|