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 |