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

Unified Diff: components/data_reduction_proxy/content/browser/content_lofi_ui_service.h

Issue 1558553002: Lo-Fi snackbar should only be shown for the first q=low response of a page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fix Created 4 years, 11 months 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/data_reduction_proxy/content/browser/content_lofi_ui_service.h
diff --git a/components/data_reduction_proxy/content/browser/content_lofi_ui_service.h b/components/data_reduction_proxy/content/browser/content_lofi_ui_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..c41779baa54e9f2ad99214f79c57b94c3fa03ac6
--- /dev/null
+++ b/components/data_reduction_proxy/content/browser/content_lofi_ui_service.h
@@ -0,0 +1,60 @@
+// 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_CONTENT_BROWSER_CONTENT_LOFI_UI_SERVICE_H_
+#define COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_CONTENT_LOFI_UI_SERVICE_H_
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "components/data_reduction_proxy/core/common/lofi_ui_service.h"
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace content {
+class WebContents;
+}
+
+namespace net {
+class URLRequest;
+}
+
+namespace data_reduction_proxy {
+
+typedef base::Callback<void(content::WebContents* web_contents)>
+ OnLoFiResponseReceivedCallback;
+
+// Passes notifications to the UI thread that a Lo-Fi response has been
+// received. These notifications may be used to show Lo-Fi UI. This object lives
+// on the IO thread and OnLoFiReponseReceived should be called from there.
+class ContentLoFiUIService : public LoFiUIService {
+ public:
+ ContentLoFiUIService(
+ const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner,
+ const OnLoFiResponseReceivedCallback& on_lofi_response_received_callback);
+ ~ContentLoFiUIService() override;
+
+ // LoFiUIService implementation:
+ void OnLoFiReponseReceived(const net::URLRequest& request) override;
+
+ private:
+ // Using the |render_process_id| and |render_frame_id|, gets the associated
+ // WebContents if it exists and runs the
+ // |notify_lofi_response_received_callback_|.
+ void OnLoFiResponseReceivedOnUIThread(int render_process_id,
+ int render_frame_id);
+
+ // A task runner to post calls to OnLoFiReponseReceivedOnUI on the UI
+ // thread.
+ const scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
+ const OnLoFiResponseReceivedCallback on_lofi_response_received_callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(ContentLoFiUIService);
+};
+
+} // namespace data_reduction_proxy
+
+#endif // COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_CONTENT_LOFI_UI_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698