OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebThreadSafeData
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebThreadSafeData.cpp
32
#include "public/platform/
WebThreadSafeData
.h"
40
void
WebThreadSafeData
::reset()
45
void
WebThreadSafeData
::assign(const
WebThreadSafeData
& other)
50
size_t
WebThreadSafeData
::size() const
57
const char*
WebThreadSafeData
::data() const
64
WebThreadSafeData
::
WebThreadSafeData
(const PassRefPtr<RawData>& data)
69
WebThreadSafeData
&
WebThreadSafeData
::operator=(const PassRefPtr<RawData>& data
[
all
...]
/external/chromium_org/third_party/WebKit/public/platform/
WebThreadSafeData.h
45
// A container for raw bytes. It is inexpensive to copy a
WebThreadSafeData
object.
46
// It is safe to pass a
WebThreadSafeData
across threads!!!
47
class
WebThreadSafeData
{
49
WebThreadSafeData
() { }
50
~
WebThreadSafeData
() { reset(); }
52
BLINK_PLATFORM_EXPORT void assign(const
WebThreadSafeData
&);
61
BLINK_PLATFORM_EXPORT
WebThreadSafeData
(const WTF::PassRefPtr<WebCore::RawData>&);
62
BLINK_PLATFORM_EXPORT
WebThreadSafeData
& operator=(const WTF::PassRefPtr<WebCore::RawData>&);
Completed in 91 milliseconds