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

Side by Side Diff: Source/platform/scroll/FramelessScrollView.cpp

Issue 269433002: Revert of 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 | « Source/platform/scroll/FramelessScrollView.h ('k') | Source/platform/scroll/ScrollableArea.h » ('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) 2008, 2009, Google Inc. All rights reserved. 2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const In tRect& rect) 45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const In tRect& rect)
46 { 46 {
47 // Add in our offset within the ScrollView. 47 // Add in our offset within the ScrollView.
48 IntRect dirtyRect = rect; 48 IntRect dirtyRect = rect;
49 dirtyRect.move(scrollbar->x(), scrollbar->y()); 49 dirtyRect.move(scrollbar->x(), scrollbar->y());
50 invalidateRect(dirtyRect); 50 invalidateRect(dirtyRect);
51 } 51 }
52 52
53 bool FramelessScrollView::isActiveFocus() const 53 bool FramelessScrollView::isActive() const
54 { 54 {
55 // FIXME 55 // FIXME
56 return true; 56 return true;
57 } 57 }
58 58
59 bool FramelessScrollView::scrollbarsCanBeActive() const 59 bool FramelessScrollView::scrollbarsCanBeActive() const
60 { 60 {
61 return isActiveFocus(); 61 return isActive();
62 } 62 }
63 63
64 IntRect FramelessScrollView::scrollableAreaBoundingBox() const 64 IntRect FramelessScrollView::scrollableAreaBoundingBox() const
65 { 65 {
66 return windowClipRect(IncludeScrollbars); 66 return windowClipRect(IncludeScrollbars);
67 } 67 }
68 68
69 void FramelessScrollView::invalidateRect(const IntRect& rect) 69 void FramelessScrollView::invalidateRect(const IntRect& rect)
70 { 70 {
71 if (HostWindow* h = hostWindow()) 71 if (HostWindow* h = hostWindow())
(...skipping 19 matching lines...) Expand all
91 91
92 void FramelessScrollView::contentsResized() 92 void FramelessScrollView::contentsResized()
93 { 93 {
94 } 94 }
95 95
96 void FramelessScrollView::scrollbarExistenceDidChange() 96 void FramelessScrollView::scrollbarExistenceDidChange()
97 { 97 {
98 } 98 }
99 99
100 } // namespace WebCore 100 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/platform/scroll/FramelessScrollView.h ('k') | Source/platform/scroll/ScrollableArea.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698