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: Source/core/editing/TextOffset.h

Issue 1295073002: Move serializer related files in core/editing/ related files into core/editing/serializers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T15:24:31 Rebase for Source/web/WebPageSerializerImpl.cpp Created 5 years, 4 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/editing/StyledMarkupSerializerTest.cpp ('k') | Source/core/editing/TextOffset.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/TextOffset.h
diff --git a/Source/core/editing/TextOffset.h b/Source/core/editing/TextOffset.h
deleted file mode 100644
index 2f995ab7b7509457fdec62f3840c14ea85ae233a..0000000000000000000000000000000000000000
--- a/Source/core/editing/TextOffset.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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 TextOffset_h
-#define TextOffset_h
-
-#include "public/platform/Platform.h"
-#include "wtf/Forward.h"
-
-namespace blink {
-
-class Text;
-
-class TextOffset {
- STACK_ALLOCATED();
-public:
- TextOffset();
- TextOffset(PassRefPtrWillBeRawPtr<Text>, int);
- TextOffset(const TextOffset&);
-
- Text* text() const { return m_text.get(); }
- int offset() const { return m_offset; }
-
- bool isNull() const;
- bool isNotNull() const;
-
-private:
- RefPtrWillBeMember<Text> m_text;
- int m_offset;
-};
-
-} // namespace blink
-
-#endif // TextOffset_h
« no previous file with comments | « Source/core/editing/StyledMarkupSerializerTest.cpp ('k') | Source/core/editing/TextOffset.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698