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

Side by Side Diff: JavaScriptCore/API/JSBasePrivate.h

Issue 28077: WebKit side of merge from r41149 to r41181. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/WebKit/
Patch Set: Created 11 years, 10 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
« no previous file with comments | « no previous file | JavaScriptCore/API/JSContextRef.h » ('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) 2008 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Computer, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 25 matching lines...) Expand all
36 /*! 36 /*!
37 @function 37 @function
38 @abstract Reports an object's non-GC memory payload to the garbage collector. 38 @abstract Reports an object's non-GC memory payload to the garbage collector.
39 @param ctx The execution context to use. 39 @param ctx The execution context to use.
40 @param size The payload's size, in bytes. 40 @param size The payload's size, in bytes.
41 @discussion Use this function to notify the garbage collector that a GC object 41 @discussion Use this function to notify the garbage collector that a GC object
42 owns a large non-GC memory region. Calling this function will encourage the 42 owns a large non-GC memory region. Calling this function will encourage the
43 garbage collector to collect soon, hoping to reclaim that large non-GC memory 43 garbage collector to collect soon, hoping to reclaim that large non-GC memory
44 region. 44 region.
45 */ 45 */
46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_ AFTER_WEBKIT_VERSION_3_1; 46 JS_EXPORT void JSReportExtraMemoryCost(JSContextRef ctx, size_t size) AVAILABLE_ IN_WEBKIT_VERSION_4_0;
47 47
48 #ifdef __cplusplus 48 #ifdef __cplusplus
49 } 49 }
50 #endif 50 #endif
51 51
52 #endif /* JSBasePrivate_h */ 52 #endif /* JSBasePrivate_h */
OLDNEW
« no previous file with comments | « no previous file | JavaScriptCore/API/JSContextRef.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698