Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: Source/WebKit/mac/Plugins/WebBaseNetscapePluginView.h

Issue 12408009: Merge 144236 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/WebKit/mac/ChangeLog ('k') | Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 - (NSURL *)URLWithCString:(const char *)URLCString; 92 - (NSURL *)URLWithCString:(const char *)URLCString;
93 - (NSMutableURLRequest *)requestWithURLCString:(const char *)URLCString; 93 - (NSMutableURLRequest *)requestWithURLCString:(const char *)URLCString;
94 94
95 // Subclasses must override these. 95 // Subclasses must override these.
96 // The "handle" prefix is needed to avoid overriding NSView methods. 96 // The "handle" prefix is needed to avoid overriding NSView methods.
97 - (void)handleMouseMoved:(NSEvent *)event; 97 - (void)handleMouseMoved:(NSEvent *)event;
98 - (void)handleMouseEntered:(NSEvent *)event; 98 - (void)handleMouseEntered:(NSEvent *)event;
99 - (void)handleMouseExited:(NSEvent *)event; 99 - (void)handleMouseExited:(NSEvent *)event;
100 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values; 100 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values;
101 - (void)focusChanged; 101 - (void)focusChanged;
102 - (void)updateAndSetWindow;
102 103
103 - (WebFrame *)webFrame; 104 - (WebFrame *)webFrame;
104 - (WebDataSource *)dataSource; 105 - (WebDataSource *)dataSource;
105 - (WebView *)webView; 106 - (WebView *)webView;
106 - (NSWindow *)currentWindow; 107 - (NSWindow *)currentWindow;
107 - (WebCore::HTMLPlugInElement*)element; 108 - (WebCore::HTMLPlugInElement*)element;
108 109
109 - (void)removeTrackingRect; 110 - (void)removeTrackingRect;
110 - (void)resetTrackingRect; 111 - (void)resetTrackingRect;
111 112
(...skipping 28 matching lines...) Expand all
140 @end 141 @end
141 142
142 143
143 namespace WebKit { 144 namespace WebKit {
144 bool getAuthenticationInfo(const char* protocolStr, const char* hostStr, int32_t port, const char* schemeStr, const char* realmStr, 145 bool getAuthenticationInfo(const char* protocolStr, const char* hostStr, int32_t port, const char* schemeStr, const char* realmStr,
145 WTF::CString& username, WTF::CString& password); 146 WTF::CString& username, WTF::CString& password);
146 } 147 }
147 148
148 #endif 149 #endif
149 150
OLDNEW
« no previous file with comments | « Source/WebKit/mac/ChangeLog ('k') | Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698