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

Side by Side Diff: Source/core/frame/FrameView.h

Issue 260353003: isActiveFocus() is a more meaningful name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
8 8
9 This library is free software; you can redistribute it and/or 9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public 10 modify it under the terms of the GNU Library General Public
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 // On Mac WebKit1 the underlying NSScrollView just does the scrolling, but o n most other platforms 289 // On Mac WebKit1 the underlying NSScrollView just does the scrolling, but o n most other platforms
290 // we need this function in order to do the scroll ourselves. 290 // we need this function in order to do the scroll ourselves.
291 bool wheelEvent(const PlatformWheelEvent&); 291 bool wheelEvent(const PlatformWheelEvent&);
292 292
293 bool inProgrammaticScroll() const { return m_inProgrammaticScroll; } 293 bool inProgrammaticScroll() const { return m_inProgrammaticScroll; }
294 void setInProgrammaticScroll(bool programmaticScroll) { m_inProgrammaticScro ll = programmaticScroll; } 294 void setInProgrammaticScroll(bool programmaticScroll) { m_inProgrammaticScro ll = programmaticScroll; }
295 295
296 void setHasSoftwareFilters(bool hasSoftwareFilters) { m_hasSoftwareFilters = hasSoftwareFilters; } 296 void setHasSoftwareFilters(bool hasSoftwareFilters) { m_hasSoftwareFilters = hasSoftwareFilters; }
297 bool hasSoftwareFilters() const { return m_hasSoftwareFilters; } 297 bool hasSoftwareFilters() const { return m_hasSoftwareFilters; }
298 298
299 virtual bool isActive() const OVERRIDE; 299 virtual bool isActiveFocus() const OVERRIDE;
300 300
301 // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead. 301 // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead.
302 IntSize scrollOffsetForFixedPosition() const; 302 IntSize scrollOffsetForFixedPosition() const;
303 303
304 virtual bool shouldPlaceVerticalScrollbarOnLeft() const OVERRIDE; 304 virtual bool shouldPlaceVerticalScrollbarOnLeft() const OVERRIDE;
305 305
306 // Override scrollbar notifications to update the AXObject cache. 306 // Override scrollbar notifications to update the AXObject cache.
307 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; 307 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
308 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE; 308 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
309 309
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 m_view->setCanRepaintDuringPerformLayout(m_originalValue); 563 m_view->setCanRepaintDuringPerformLayout(m_originalValue);
564 } 564 }
565 private: 565 private:
566 FrameView* m_view; 566 FrameView* m_view;
567 bool m_originalValue; 567 bool m_originalValue;
568 }; 568 };
569 569
570 } // namespace WebCore 570 } // namespace WebCore
571 571
572 #endif // FrameView_h 572 #endif // FrameView_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698