Chromium Code Reviews| Index: components/data_reduction_proxy/core/common/lofi_ui_service.h |
| diff --git a/components/data_reduction_proxy/core/common/lofi_ui_service.h b/components/data_reduction_proxy/core/common/lofi_ui_service.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..238364265a92934a300fc3d6cc3bcc61f7e20ceb |
| --- /dev/null |
| +++ b/components/data_reduction_proxy/core/common/lofi_ui_service.h |
| @@ -0,0 +1,29 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_LOFI_UI_SERVICE_H_ |
| +#define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_LOFI_UI_SERVICE_H_ |
| + |
| +#include "base/macros.h" |
| + |
| +namespace net { |
| +class URLRequest; |
| +} |
| + |
| +namespace data_reduction_proxy { |
| + |
| +// Passes notifications to the UI thread that a Lo-Fi response has been |
| +// received. These notifications are used to show Lo-Fi UI in Android. |
| +class LoFiUIService { |
| + public: |
| + virtual ~LoFiUIService() {} |
| + |
| + // Notifies the UI thread that |request| has a Lo-Fi response. |
| + virtual void NotifyLoFiReponseReceived( |
| + const net::URLRequest& request) const = 0; |
|
tbansal1
2016/01/05 03:10:59
It is somewhat confusing that this method is const
megjablon
2016/01/05 20:13:03
Done.
|
| +}; |
| + |
| +} // namespace data_reduction_proxy |
| + |
| +#endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_LOFI_UI_SERVICE_H_ |