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 20 StreamContext::StreamContext() {}
22 StreamContext* StreamContext::GetFor(BrowserContext* context) {
24 scoped_refptr<StreamContext> stream = new StreamContext();
26 new UserDataAdapter<StreamContext>(stream.get()));
31 base::Bind(&StreamContext::InitializeOnIOThread, stream));
35 return UserDataAdapter<StreamContext>::Get(context, kStreamContextKeyName);
38 void StreamContext::InitializeOnIOThread()
    [all...]
stream_context.h 25 class StreamContext
26 : public base::RefCountedThreadSafe<StreamContext,
29 StreamContext();
31 CONTENT_EXPORT static StreamContext* GetFor(BrowserContext* browser_context);
38 virtual ~StreamContext();
41 friend class base::DeleteHelper<StreamContext>;
42 friend class base::RefCountedThreadSafe<StreamContext,
52 static void Destruct(const StreamContext* context) {

Completed in 1267 milliseconds