HomeSort by relevance Sort by last modified time
    Searched defs:StreamContext (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/streams/
stream_context.cc 19 StreamContext::StreamContext() {}
21 StreamContext* StreamContext::GetFor(BrowserContext* context) {
23 scoped_refptr<StreamContext> stream = new StreamContext();
25 new UserDataAdapter<StreamContext>(stream.get()));
30 base::Bind(&StreamContext::InitializeOnIOThread, stream));
34 return UserDataAdapter<StreamContext>::Get(context, kStreamContextKeyName);
37 void StreamContext::InitializeOnIOThread()
    [all...]
stream_context.h 26 class StreamContext
27 : public base::RefCountedThreadSafe<StreamContext,
30 StreamContext();
32 CONTENT_EXPORT static StreamContext* GetFor(BrowserContext* browser_context);
39 virtual ~StreamContext();
42 friend class base::DeleteHelper<StreamContext>;
43 friend class base::RefCountedThreadSafe<StreamContext,
53 static void Destruct(const StreamContext* context) {

Completed in 160 milliseconds