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

Side by Side Diff: Source/core/page/Page.h

Issue 331793004: Delete ASSERT_DISABLED (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing include Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 220
221 void trace(Visitor*); 221 void trace(Visitor*);
222 void willBeDestroyed(); 222 void willBeDestroyed();
223 223
224 protected: 224 protected:
225 PageLifecycleNotifier& lifecycleNotifier(); 225 PageLifecycleNotifier& lifecycleNotifier();
226 226
227 private: 227 private:
228 void initGroup(); 228 void initGroup();
229 229
230 #if ASSERT_DISABLED 230 #if ASSERT_ENABLED
231 void checkSubframeCountConsistency() const;
232 #else
231 void checkSubframeCountConsistency() const { } 233 void checkSubframeCountConsistency() const { }
232 #else
233 void checkSubframeCountConsistency() const;
234 #endif 234 #endif
235 235
236 void setTimerAlignmentInterval(double); 236 void setTimerAlignmentInterval(double);
237 237
238 void setNeedsLayoutInAllFrames(); 238 void setNeedsLayoutInAllFrames();
239 239
240 // SettingsDelegate overrides. 240 // SettingsDelegate overrides.
241 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; 241 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE;
242 242
243 PageAnimator m_animator; 243 PageAnimator m_animator;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m ultisamplingChangedObservers; 287 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m ultisamplingChangedObservers;
288 288
289 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 289 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
290 // FIXME: Most of the members of Page should move onto FrameHost. 290 // FIXME: Most of the members of Page should move onto FrameHost.
291 OwnPtrWillBeMember<FrameHost> m_frameHost; 291 OwnPtrWillBeMember<FrameHost> m_frameHost;
292 }; 292 };
293 293
294 } // namespace WebCore 294 } // namespace WebCore
295 295
296 #endif // Page_h 296 #endif // Page_h
OLDNEW
« no previous file with comments | « Source/core/inspector/CodeGeneratorInspector.py ('k') | Source/modules/webdatabase/DatabaseThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698