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

Unified Diff: Source/core/fetch/TextResource.cpp

Issue 1167583003: Move Resource subclasses out of fetch/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « Source/core/fetch/TextResource.h ('k') | Source/core/fetch/XSLStyleSheetResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/TextResource.cpp
diff --git a/Source/core/fetch/TextResource.cpp b/Source/core/fetch/TextResource.cpp
deleted file mode 100644
index 5ec44e320521e772a3ed5da960bfb08142eb9c8f..0000000000000000000000000000000000000000
--- a/Source/core/fetch/TextResource.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2014 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.
-
-#include "config.h"
-#include "core/fetch/TextResource.h"
-
-#include "core/html/parser/TextResourceDecoder.h"
-#include "platform/SharedBuffer.h"
-
-namespace blink {
-
-TextResource::TextResource(const ResourceRequest& resourceRequest, Resource::Type type, const String& mimeType, const String& charset)
- : Resource(resourceRequest, type)
- , m_decoder(TextResourceDecoder::create(mimeType, charset))
-{
-}
-
-TextResource::~TextResource()
-{
-}
-
-void TextResource::setEncoding(const String& chs)
-{
- m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
-}
-
-String TextResource::encoding() const
-{
- return m_decoder->encoding().name();
-}
-
-String TextResource::decodedText() const
-{
- ASSERT(m_data);
-
- String text = m_decoder->decode(m_data->data(), encodedSize());
- text.append(m_decoder->flush());
- return text;
-}
-
-} // namespace blink
« no previous file with comments | « Source/core/fetch/TextResource.h ('k') | Source/core/fetch/XSLStyleSheetResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698