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

Unified Diff: net/filter/sdch_policy_delegate.h

Issue 2368433002: Add net::SdchSourceStream and net::SdchPolicyDelegate (Closed)
Patch Set: Rebased to fix compile error Created 4 years, 2 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
« no previous file with comments | « no previous file | net/filter/sdch_policy_delegate.cc » ('j') | net/filter/sdch_policy_delegate.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/filter/sdch_policy_delegate.h
diff --git a/net/filter/sdch_policy_delegate.h b/net/filter/sdch_policy_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..31c9436405bfe6fbb64315fe555a04200f5418ac
--- /dev/null
+++ b/net/filter/sdch_policy_delegate.h
@@ -0,0 +1,82 @@
+// Copyright 2016 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 NET_FILTER_SDCH_POLICY_DELEGATE_H_
+#define NET_FILTER_SDCH_POLICY_DELEGATE_H_
+
+#include <memory>
+#include <string>
+
+#include "base/macros.h"
+#include "base/supports_user_data.h"
+#include "net/base/net_export.h"
+#include "net/base/sdch_manager.h"
+#include "net/filter/sdch_source_stream.h"
+#include "net/log/net_log.h"
+#include "net/log/net_log_with_source.h"
+#include "url/gurl.h"
+
+namespace net {
+
+class SdchSourceStream;
+
+// This class implements the SdchSourceStream::Delegate interface to perform
+// the SDCH error handling and stats gathering. The Context object supplies
+// details about the request needed for this object to make error-handling
+// decisions. See the SdchSourceStream::Delegate documentation for more details.
+class NET_EXPORT_PRIVATE SdchPolicyDelegate
+ : public SdchSourceStream::Delegate {
+ public:
+ class Context {
+ public:
+ enum StatisticSelector {
+ SDCH_DECODE,
+ SDCH_PASSTHROUGH,
+ SDCH_EXPERIMENT_DECODE,
+ SDCH_EXPERIMENT_HOLDBACK,
+ };
+
+ virtual ~Context() {}
+ virtual bool GetMimeType(std::string* mime_type) const = 0;
+ virtual bool GetURL(GURL* url) const = 0;
+ virtual bool IsCachedContent() const = 0;
+ virtual SdchManager* GetSdchManager() const = 0;
+ virtual SdchManager::DictionarySet* SdchDictionariesAdvertised() const = 0;
+ virtual int GetResponseCode() const = 0;
+ virtual const NetLogWithSource& GetNetLog() const = 0;
+ };
+
+ SdchPolicyDelegate(std::unique_ptr<Context> context);
+
+ ~SdchPolicyDelegate() override;
+
+ // SdchSourceStream::Delegate implementation.
+ ErrorRecovery OnDictionaryIdError(std::string* replace_output) override;
+ ErrorRecovery OnGetDictionaryError(std::string* replace_output) override;
+ ErrorRecovery OnDecodingError(std::string* replace_output) override;
+ bool OnGetDictionary(const std::string& server_id,
+ const std::string** text) override;
+
+ private:
+ // Issues a meta-refresh if the context's MIME type supports it, and returns
+ // whether a refresh was issued. As a side-effect, blacklists the context's
+ // domain either temporarily or permanently.
+ ErrorRecovery IssueMetaRefreshIfPossible(std::string* replace_output);
+
+ // Logs an SDCH failure. This logs events in UMA and the net log in
+ // |context_|, but has no side-effects on this class or the stream.
+ void LogSdchProblem(SdchProblemCode problem);
+
+ std::unique_ptr<Context> context_;
+ // If the response was encoded with a dictionary different than those
+ // advertised (e.g. a cached response using an old dictionary), this
+ // variable preserves that dictionary from deletion during decoding.
+ std::unique_ptr<SdchManager::DictionarySet> unexpected_dictionary_set_;
+
+ DISALLOW_COPY_AND_ASSIGN(SdchPolicyDelegate);
+};
+
+} // namespace net
+
+#endif // NET_FILTER_SDCH_POLICY_DELEGATE_H_
« no previous file with comments | « no previous file | net/filter/sdch_policy_delegate.cc » ('j') | net/filter/sdch_policy_delegate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698