summaryrefslogtreecommitdiffstats
path: root/content/public/renderer
diff options
context:
space:
mode:
authorcevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:23:59 +0000
committercevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:23:59 +0000
commit3f8928374abadc5cc437e1182a842542ad86fc88 (patch)
tree95f7c1eb5020bbc6130b2efd9c8ae0097deacade /content/public/renderer
parenta3f3803f62ab68c48c9d4c3127836b5829b9d252 (diff)
downloadchromium_src-3f8928374abadc5cc437e1182a842542ad86fc88.zip
chromium_src-3f8928374abadc5cc437e1182a842542ad86fc88.tar.gz
chromium_src-3f8928374abadc5cc437e1182a842542ad86fc88.tar.bz2
More conversion from uint to size_t for shared memory allocation sizes.
BUG=164678 Review URL: https://codereview.chromium.org/11783095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176248 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/renderer')
-rw-r--r--content/public/renderer/render_thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/public/renderer/render_thread.h b/content/public/renderer/render_thread.h
index 328a6bd..a041657 100644
--- a/content/public/renderer/render_thread.h
+++ b/content/public/renderer/render_thread.h
@@ -85,7 +85,7 @@ class CONTENT_EXPORT RenderThread : public IPC::Sender {
// Asks the host to create a block of shared memory for the renderer.
// The shared memory allocated by the host is returned back.
virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer(
- uint32 buffer_size) = 0;
+ size_t buffer_size) = 0;
// Registers the given V8 extension with WebKit.
virtual void RegisterExtension(v8::Extension* extension) = 0;