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

Unified Diff: sky/engine/core/html/parser/BackgroundHTMLParser.h

Issue 811873003: Move Sky's DataPipeDrainer to mojo/common (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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: sky/engine/core/html/parser/BackgroundHTMLParser.h
diff --git a/sky/engine/core/html/parser/BackgroundHTMLParser.h b/sky/engine/core/html/parser/BackgroundHTMLParser.h
index 42ca82baae7a207bef3e38affee1aac033799e22..c358cf5da17a97240ce3351cddd27bebe5f7f948 100644
--- a/sky/engine/core/html/parser/BackgroundHTMLParser.h
+++ b/sky/engine/core/html/parser/BackgroundHTMLParser.h
@@ -27,11 +27,11 @@
#define SKY_ENGINE_CORE_HTML_PARSER_BACKGROUNDHTMLPARSER_H_
#include "base/memory/weak_ptr.h"
+#include "mojo/common/data_pipe_drainer.h"
#include "mojo/public/cpp/system/core.h"
#include "sky/engine/core/html/parser/CompactHTMLToken.h"
#include "sky/engine/core/html/parser/HTMLTokenizer.h"
#include "sky/engine/core/html/parser/TextResourceDecoder.h"
-#include "sky/engine/platform/fetcher/DataPipeDrainer.h"
#include "sky/engine/platform/text/SegmentedString.h"
#include "sky/engine/wtf/PassOwnPtr.h"
#include "sky/engine/wtf/WeakPtr.h"
@@ -41,7 +41,7 @@ namespace blink {
class HTMLDocumentParser;
class SharedBuffer;
-class BackgroundHTMLParser : public DataPipeDrainer::Client {
+class BackgroundHTMLParser : public mojo::common::DataPipeDrainer::Client {
WTF_MAKE_FAST_ALLOCATED;
public:
struct Configuration {
@@ -58,6 +58,7 @@ private:
explicit BackgroundHTMLParser(PassOwnPtr<Configuration>);
~BackgroundHTMLParser();
+ // DataPipeDrainer::Client:
void OnDataAvailable(const void* data, size_t numberOfBytes) override;
void OnDataComplete() override;
@@ -76,7 +77,7 @@ private:
OwnPtr<TextResourceDecoder> m_decoder;
mojo::ScopedDataPipeConsumerHandle m_source;
- OwnPtr<DataPipeDrainer> m_drainer;
+ OwnPtr<mojo::common::DataPipeDrainer> m_drainer;
base::WeakPtrFactory<BackgroundHTMLParser> m_weakFactory;
};

Powered by Google App Engine
This is Rietveld 408576698