HomeSort by relevance Sort by last modified time
    Searched refs:server_url (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/components/metrics/
metrics_log_uploader.cc 10 const std::string& server_url,
13 : server_url_(server_url),
metrics_log_uploader.h 20 // Constructs the uploader that will upload logs to the specified |server_url|
23 MetricsLogUploader(const std::string& server_url,
metrics_service_client.h 61 const std::string& server_url,
test_metrics_service_client.cc 62 const std::string& server_url,
  /external/chromium_org/content/browser/geolocation/
fake_access_token_store.h 26 void(const GURL& server_url,
31 void DefaultSaveAccessToken(const GURL& server_url,
fake_access_token_store.cc 48 const GURL& server_url, const base::string16& access_token) {
49 DCHECK(server_url.is_valid());
50 access_token_set_[server_url] = access_token;
  /external/chromium_org/components/policy/core/common/cloud/
policy_header_io_helper.cc 16 const std::string& server_url,
19 : server_url_(server_url),
53 void PolicyHeaderIOHelper::SetServerURLForTest(const std::string& server_url) {
57 base::Unretained(this), server_url));
62 const std::string& server_url) {
64 server_url_ = server_url;
policy_header_io_helper.h 30 const std::string& server_url,
49 void SetServerURLForTest(const std::string& server_url);
  /external/chromium_org/chromecast/shell/browser/geolocation/
cast_access_token_store.cc 44 const GURL& server_url, const base::string16& access_token) {
45 if (access_token_set_[server_url] != access_token) {
46 access_token_set_[server_url] = access_token;
cast_access_token_store.h 31 const GURL& server_url, const base::string16& access_token) OVERRIDE;
  /external/chromium_org/chrome/browser/geolocation/
chrome_access_token_store.h 28 const GURL& server_url, const base::string16& access_token) OVERRIDE;
chrome_access_token_store.cc 115 static void SetAccessTokenOnUIThread(const GURL& server_url,
122 server_url.spec(), new base::StringValue(token));
126 const GURL& server_url,
130 base::Bind(&SetAccessTokenOnUIThread, server_url, access_token));
  /external/chromium_org/chrome/browser/policy/
device_management_service_configuration.h 21 explicit DeviceManagementServiceConfiguration(const std::string& server_url);
device_management_service_configuration.cc 21 const std::string& server_url)
22 : server_url_(server_url) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
abstractlocalservercommand.py 48 server_url = "http://localhost:%d%s" % (options.httpd_port, self.launch_path)
49 print "Starting server at %s" % server_url
50 print "Use the 'Exit' link in the UI, %squitquitquit or Ctrl-C to stop" % server_url
54 threading.Timer(0.1, lambda: self._tool.user.open_url(server_url)).start()
  /external/chromium_org/chrome/browser/chromeos/timezone/
timezone_request.cc 149 void PrintTimeZoneError(const GURL& server_url,
155 server_url.GetOrigin().spec().c_str(),
164 bool ParseServerResponse(const GURL& server_url,
170 PrintTimeZoneError(server_url, "Server returned empty response", timezone);
182 PrintTimeZoneError(server_url, "JSONReader failed: " + error_msg, timezone);
189 PrintTimeZoneError(server_url,
200 PrintTimeZoneError(server_url, "Missing status attribute.", timezone);
217 server_url, "Bad status attribute value: '" + status + "'", timezone);
227 PrintTimeZoneError(server_url, "Missing dstOffset attribute.", timezone);
235 PrintTimeZoneError(server_url, "Missing rawOffset attribute.", timezone)
    [all...]
  /external/chromium_org/content/public/browser/
access_token_store.h 50 const GURL& server_url, const base::string16& access_token) = 0;
  /external/chromium_org/content/shell/geolocation/
shell_access_token_store.h 33 const GURL& server_url, const base::string16& access_token) OVERRIDE;
  /external/chromium_org/chrome/browser/chromeos/geolocation/
simple_geolocation_request.cc 139 void PrintGeolocationError(const GURL& server_url,
145 server_url.GetOrigin().spec().c_str(),
154 bool ParseServerResponse(const GURL& server_url,
161 server_url, "Server returned empty response", position);
174 server_url, "JSONReader failed: " + error_msg, position);
182 server_url,
215 PrintGeolocationError(server_url, "Missing 'lat' attribute.", position);
221 PrintGeolocationError(server_url, "Missing 'lon' attribute.", position);
228 server_url, "Missing 'accuracy' attribute.", position);
248 const GURL& server_url,
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
connector_settings_unittest.cc 88 settings.server_url().spec());
101 EXPECT_EQ("https://www.google.com/cloudprint", settings.server_url().spec());
121 EXPECT_EQ(settings1.server_url(), settings2.server_url());
connector_settings.h 32 const GURL& server_url() const { function in class:cloud_print::ConnectorSettings
  /external/chromium_org/components/metrics/net/
net_metrics_log_uploader.h 30 const std::string& server_url,
net_metrics_log_uploader.cc 16 const std::string& server_url,
19 : MetricsLogUploader(server_url, mime_type, on_upload_complete),
  /external/chromium_org/components/rappor/
rappor_service.cc 52 std::string server_url = variations::GetVariationParamValue(
55 if (!server_url.empty())
56 return GURL(server_url);
93 const GURL server_url = GetServerUrl(metrics_enabled); local
94 if (!server_url.is_valid()) {
95 DVLOG(1) << server_url.spec() << " is invalid. "
99 DVLOG(1) << "RapporService started. Reporting to " << server_url.spec();
103 uploader_.reset(new LogUploader(server_url, kMimeType, request_context));
  /external/chromium_org/sync/engine/net/
server_connection_manager.cc 328 // Returns the current server parameters in server_url and port.
329 void ServerConnectionManager::GetServerParameters(string* server_url,
332 if (server_url != NULL)
333 *server_url = sync_server_;
341 string server_url; local
344 GetServerParameters(&server_url, &port, &use_ssl);
346 if (server_url.empty())
349 server_url = "http://" + server_url;
350 GURL gurl(server_url);
    [all...]

Completed in 285 milliseconds

1 2 3