Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: components/autofill/core/browser/form_structure.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/form_structure.h
diff --git a/components/autofill/core/browser/form_structure.h b/components/autofill/core/browser/form_structure.h
index 8e9cba3d60ad893c6d99ab5042d5f0b1e7ad43a9..54288a716b5d73b8181757893c6cc3496facbb02 100644
--- a/components/autofill/core/browser/form_structure.h
+++ b/components/autofill/core/browser/form_structure.h
@@ -34,7 +34,7 @@ class TimeTicks;
}
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
}
namespace autofill {
@@ -75,7 +75,7 @@ class FormStructure {
// |rappor_service| may be null.
static void ParseQueryResponse(std::string response,
const std::vector<FormStructure*>& forms,
- rappor::RapporService* rappor_service);
+ rappor::RapporServiceImpl* rappor_service);
// Returns predictions using the details from the given |form_structures| and
// their fields' predicted types.
@@ -129,7 +129,7 @@ class FormStructure {
void LogQualityMetrics(const base::TimeTicks& load_time,
const base::TimeTicks& interaction_time,
const base::TimeTicks& submission_time,
- rappor::RapporService* rappor_service,
+ rappor::RapporServiceImpl* rappor_service,
bool did_show_suggestions,
bool observed_submission) const;

Powered by Google App Engine
This is Rietveld 408576698