[go: nahoru, domu]

blob: 0fd69f44e8071fa60f03ffdfaad11a467553596b [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_UKM_IOS_UKM_URL_RECORDER_H_
#define COMPONENTS_UKM_IOS_UKM_URL_RECORDER_H_
#include "services/metrics/public/cpp/ukm_source_id.h"
namespace web {
class WebState;
} // namespace web
namespace ukm {
// Initializes recording of UKM source URLs for the given WebState.
void InitializeSourceUrlRecorderForWebState(web::WebState* web_state);
// Gets a UKM SourceId for the currently committed document of web state.
// Returns kInvalidSourceId if no commit has been observed.
SourceId GetSourceIdForWebStateDocument(web::WebState* web_state);
} // namespace ukm
#endif // COMPONENTS_UKM_IOS_UKM_URL_RECORDER_H_