// Copyright 2014 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_TRANSLATE_CORE_COMMON_LANGUAGE_DETECTION_DETAILS_H_ #define COMPONENTS_TRANSLATE_CORE_COMMON_LANGUAGE_DETECTION_DETAILS_H_ #include <string> #include "base/time/time.h" #include "url/gurl.h" namespace translate { // This struct corresponds to LanguageDetectionDetails defined in // translate.mojom, any changes need to be made to both definitions. struct LanguageDetectionDetails { … }; } // namespace translate #endif // COMPONENTS_TRANSLATE_CORE_COMMON_LANGUAGE_DETECTION_DETAILS_H_