| Index: components/quirks/quirks_client.h
|
| diff --git a/components/quirks/quirks_client.h b/components/quirks/quirks_client.h
|
| index 86c7adab1bd6007497931fefcdbe79b0b3024e1d..e993e7b17c602564ac8400bb8fc146cabfbfab17 100644
|
| --- a/components/quirks/quirks_client.h
|
| +++ b/components/quirks/quirks_client.h
|
| @@ -26,6 +26,7 @@ using RequestFinishedCallback =
|
| class QuirksClient : public net::URLFetcherDelegate {
|
| public:
|
| QuirksClient(int64_t product_id,
|
| + const std::string& display_name,
|
| const RequestFinishedCallback& on_request_finished,
|
| QuirksManager* manager);
|
| ~QuirksClient() override;
|
| @@ -50,6 +51,9 @@ class QuirksClient : public net::URLFetcherDelegate {
|
| // ID of display to request from Quirks Server.
|
| const int64_t product_id_;
|
|
|
| + // Human-readable name to send to Quirks Server.
|
| + const std::string display_name_;
|
| +
|
| // Callback supplied by caller.
|
| const RequestFinishedCallback on_request_finished_;
|
|
|
|
|