Skip to content

Commit

Permalink
Source/WebCore:
Browse files Browse the repository at this point in the history
Speculative build fix.

* platform/spi/mac/NSViewSPI.h:

Source/WebKit/mac:
Speculative build fix.

* WebView/WebView.mm:
(-[WebView _commonInitializationWithFrameName:groupName:]):

Source/WebKit2:
 Speculative build fix.

* UIProcess/API/mac/WKView.mm:
(-[WKView initWithFrame:processPool:configuration:webView:]):



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@178681 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
bdakin@apple.com committed Jan 20, 2015
1 parent c61de69 commit 8cb90a3
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Source/WebCore/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2015-01-19 Beth Dakin <bdakin@apple.com>

Speculative build fix.

* platform/spi/mac/NSViewSPI.h:

2015-01-19 Timothy Horton <timothy_horton@apple.com>

Adjust naming of action menu SPI
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/platform/spi/mac/NSViewSPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
#import <AppKit/NSView.h>

@interface NSView (Private)
@property (strong) NSMenu *_actionMenu;
@property (strong, setter=_setActionMenu:) NSMenu *_actionMenu;
@end
7 changes: 7 additions & 0 deletions Source/WebKit/mac/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2015-01-19 Beth Dakin <bdakin@apple.com>

Speculative build fix.

* WebView/WebView.mm:
(-[WebView _commonInitializationWithFrameName:groupName:]):

2015-01-19 Beth Dakin <bdakin@apple.com>

Speculative build fix.
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit/mac/WebView/WebView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ - (void)_commonInitializationWithFrameName:(NSString *)frameName groupName:(NSSt
[frameView release];

#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
if ([self respondsToSelector:@selector(setActionMenu:)]) {
if ([self respondsToSelector:@selector(_setActionMenu:)]) {
RetainPtr<NSMenu> actionMenu = adoptNS([[NSMenu alloc] init]);
self._actionMenu = actionMenu.get();
_private->actionMenuController = [[WebActionMenuController alloc] initWithWebView:self];
Expand Down
7 changes: 7 additions & 0 deletions Source/WebKit2/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2015-01-19 Beth Dakin <bdakin@apple.com>

Speculative build fix.

* UIProcess/API/mac/WKView.mm:
(-[WKView initWithFrame:processPool:configuration:webView:]):

2015-01-19 Timothy Horton <timothy_horton@apple.com>

Adjust naming of action menu SPI
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit2/UIProcess/API/mac/WKView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -3613,7 +3613,7 @@ - (instancetype)initWithFrame:(NSRect)frame processPool:(WebProcessPool&)process
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_dictionaryLookupPopoverWillClose:) name:getLUNotificationPopoverWillClose() object:nil];

#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
if ([self respondsToSelector:@selector(setActionMenu:)]) {
if ([self respondsToSelector:@selector(_setActionMenu:)]) {
RetainPtr<NSMenu> menu = adoptNS([[NSMenu alloc] init]);
self._actionMenu = menu.get();
_data->_actionMenuController = adoptNS([[WKActionMenuController alloc] initWithPage:*_data->_page view:self]);
Expand Down

0 comments on commit 8cb90a3

Please sign in to comment.