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

Side by Side Diff: content/public/plugin/plugin_interpose_util_mac.mm

Issue 8224021: Move the following files to content\public\plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/plugin/plugin_interpose_util_mac.h" 5 #include "content/plugin/plugin_interpose_util_mac.h"
6 6
7 #import <AppKit/AppKit.h> 7 #import <AppKit/AppKit.h>
8 #import <objc/runtime.h> 8 #import <objc/runtime.h>
9 9
10 #include "content/common/plugin_messages.h" 10 #include "content/common/plugin_messages.h"
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 Class nscursor_class = [NSCursor class]; 297 Class nscursor_class = [NSCursor class];
298 ExchangeMethods(nscursor_class, NO, @selector(set), 298 ExchangeMethods(nscursor_class, NO, @selector(set),
299 @selector(chromePlugin_set)); 299 @selector(chromePlugin_set));
300 ExchangeMethods(nscursor_class, YES, @selector(hide), 300 ExchangeMethods(nscursor_class, YES, @selector(hide),
301 @selector(chromePlugin_hide)); 301 @selector(chromePlugin_hide));
302 ExchangeMethods(nscursor_class, YES, @selector(unhide), 302 ExchangeMethods(nscursor_class, YES, @selector(unhide),
303 @selector(chromePlugin_unhide)); 303 @selector(chromePlugin_unhide));
304 } 304 }
305 305
306 } // namespace mac_plugin_interposing 306 } // namespace mac_plugin_interposing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698