Home | History | Annotate | Download | only in net

Lines Matching defs:Factory

87   // URLFetcher::Create uses the currently registered Factory to create the
88 // URLFetcher. Factory is intended for testing.
89 class Factory {
97 virtual ~Factory() {}
107 // Sets the factory used by the static method Create to create a URLFetcher.
108 // URLFetcher does not take ownership of |factory|. A value of NULL results
111 static void set_factory(Factory* factory) { factory_ = factory; }
122 // Factory (the default) this creates and returns a new URLFetcher. See the
241 static Factory* factory_;