| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 AlternativeTextClient* alternativeTextClient() const { return m_alternativeT
extClient; } | 252 AlternativeTextClient* alternativeTextClient() const { return m_alternativeT
extClient; } |
| 253 | 253 |
| 254 PageConsole* console() { return m_console.get(); } | 254 PageConsole* console() { return m_console.get(); } |
| 255 | 255 |
| 256 void reportMemoryUsage(MemoryObjectInfo*) const; | 256 void reportMemoryUsage(MemoryObjectInfo*) const; |
| 257 | 257 |
| 258 void captionPreferencesChanged(); | 258 void captionPreferencesChanged(); |
| 259 | 259 |
| 260 double timerAlignmentInterval() const; | 260 double timerAlignmentInterval() const; |
| 261 | 261 |
| 262 class MultisamplingChangedObserver { |
| 263 public: |
| 264 MultisamplingChangedObserver(Page*); |
| 265 virtual void multisamplingChanged(bool) = 0; |
| 266 virtual ~MultisamplingChangedObserver(); |
| 267 private: |
| 268 Page* m_page; |
| 269 }; |
| 270 |
| 271 friend class MultisamplingChangedObserver; |
| 272 |
| 273 void multisamplingChanged(); |
| 274 |
| 262 private: | 275 private: |
| 263 void initGroup(); | 276 void initGroup(); |
| 264 | 277 |
| 265 #if ASSERT_DISABLED | 278 #if ASSERT_DISABLED |
| 266 void checkSubframeCountConsistency() const { } | 279 void checkSubframeCountConsistency() const { } |
| 267 #else | 280 #else |
| 268 void checkSubframeCountConsistency() const; | 281 void checkSubframeCountConsistency() const; |
| 269 #endif | 282 #endif |
| 270 | 283 |
| 271 void setTimerAlignmentInterval(double); | 284 void setTimerAlignmentInterval(double); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 Region m_topRelevantPaintedRegion; | 345 Region m_topRelevantPaintedRegion; |
| 333 Region m_bottomRelevantPaintedRegion; | 346 Region m_bottomRelevantPaintedRegion; |
| 334 Region m_relevantUnpaintedRegion; | 347 Region m_relevantUnpaintedRegion; |
| 335 bool m_isCountingRelevantRepaintedObjects; | 348 bool m_isCountingRelevantRepaintedObjects; |
| 336 #ifndef NDEBUG | 349 #ifndef NDEBUG |
| 337 bool m_isPainting; | 350 bool m_isPainting; |
| 338 #endif | 351 #endif |
| 339 AlternativeTextClient* m_alternativeTextClient; | 352 AlternativeTextClient* m_alternativeTextClient; |
| 340 | 353 |
| 341 OwnPtr<PageConsole> m_console; | 354 OwnPtr<PageConsole> m_console; |
| 355 |
| 356 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; |
| 342 }; | 357 }; |
| 343 | 358 |
| 344 } // namespace WebCore | 359 } // namespace WebCore |
| 345 | 360 |
| 346 #endif // Page_h | 361 #endif // Page_h |
| OLD | NEW |