Chromium Code Reviews| Index: Source/core/frame/Frame.h |
| diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h |
| index 0937f95e287c1a3e1e88a4f141d197eb050f750e..aabd1b9f82f20dc8f77fc6e21cddbfb2c4d8f0c8 100644 |
| --- a/Source/core/frame/Frame.h |
| +++ b/Source/core/frame/Frame.h |
| @@ -112,6 +112,8 @@ namespace WebCore { |
| void dispatchVisibilityStateChangeEvent(); |
| + int64_t id() const { return m_id; } |
|
Charlie Reis
2013/10/29 22:35:03
It would probably help to document the scope of th
|
| + |
| // ======== All public functions below this point are candidates to move out of Frame into another class. ======== |
| bool inScope(TreeScope*) const; |
| @@ -187,6 +189,8 @@ namespace WebCore { |
| OwnPtr<AnimationController> m_animationController; |
| OwnPtr<InputMethodController> m_inputMethodController; |
| + int64_t m_id; |
| + |
| float m_pageZoomFactor; |
| float m_textZoomFactor; |