HomeSort by relevance Sort by last modified time
    Searched refs:AddStandardScheme (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/common/
googleurl_dummy.cc 12 void AddStandardScheme(const char* new_scheme) {
url_constants.cc 254 url_util::AddStandardScheme(kChromeDevToolsScheme);
255 url_util::AddStandardScheme(kChromeUIScheme);
256 url_util::AddStandardScheme(kExtensionScheme);
257 url_util::AddStandardScheme(kMetadataScheme);
259 url_util::AddStandardScheme(kCrosScheme);
263 // prevent accidental creation of data races in the program. AddStandardScheme
266 // AddStandardScheme in Chrome must be inside this function.
  /external/chromium/googleurl/src/
url_util.h 47 // "first call" (an example might be calling "AddStandardScheme" with your
69 GURL_API void AddStandardScheme(const char* new_scheme);
71 // Sets a flag to prevent future calls to AddStandardScheme from succeeding.
74 // Normal usage would be to call AddStandardScheme for your custom schemes at
76 // prevents future callers from mistakenly calling AddStandardScheme when the
80 // We could have had AddStandardScheme use a lock instead, but that would add
url_util.cc 362 void AddStandardScheme(const char* new_scheme) {
363 // If this assert triggers, it means you've called AddStandardScheme after

Completed in 163 milliseconds