Update to Chromium revision 106500.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@329 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2011-10-20 20:34:13 +00:00
parent 7a07aaf5f1
commit 04c948fd51
14 changed files with 283 additions and 153 deletions

View File

@ -1,4 +1,4 @@
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@ -32,15 +32,14 @@ class BrowserWebBlobRegistryImpl
const WebKit::WebURL& src_url);
virtual void unregisterBlobURL(const WebKit::WebURL& url);
// Run on I/O thread.
void DoRegisterBlobUrl(const GURL& url, webkit_blob::BlobData* blob_data);
void DoRegisterBlobUrlFrom(const GURL& url, const GURL& src_url);
void DoUnregisterBlobUrl(const GURL& url);
protected:
private:
friend class base::RefCountedThreadSafe<BrowserWebBlobRegistryImpl>;
private:
// Run on I/O thread.
void AddFinishedBlob(const GURL& url, webkit_blob::BlobData* blob_data);
void CloneBlob(const GURL& url, const GURL& src_url);
void RemoveBlob(const GURL& url);
DISALLOW_COPY_AND_ASSIGN(BrowserWebBlobRegistryImpl);
};