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

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

Issue 19641006: Cancel vibration when frame load is committed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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/core/loader/FrameLoader.cpp ('k') | Source/core/page/Page.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) 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 253
254 class MultisamplingChangedObserver { 254 class MultisamplingChangedObserver {
255 public: 255 public:
256 virtual void multisamplingChanged(bool) = 0; 256 virtual void multisamplingChanged(bool) = 0;
257 }; 257 };
258 258
259 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); 259 void addMultisamplingChangedObserver(MultisamplingChangedObserver*);
260 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); 260 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*);
261 void multisamplingChanged(); 261 void multisamplingChanged();
262 262
263 void didCommitLoad(Frame*);
264
263 protected: 265 protected:
264 PageLifecycleNotifier* lifecycleNotifier(); 266 PageLifecycleNotifier* lifecycleNotifier();
265 267
266 private: 268 private:
267 void initGroup(); 269 void initGroup();
268 270
269 #if ASSERT_DISABLED 271 #if ASSERT_DISABLED
270 void checkSubframeCountConsistency() const { } 272 void checkSubframeCountConsistency() const { }
271 #else 273 #else
272 void checkSubframeCountConsistency() const; 274 void checkSubframeCountConsistency() const;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 #endif 340 #endif
339 341
340 const OwnPtr<PageConsole> m_console; 342 const OwnPtr<PageConsole> m_console;
341 343
342 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; 344 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers;
343 }; 345 };
344 346
345 } // namespace WebCore 347 } // namespace WebCore
346 348
347 #endif // Page_h 349 #endif // Page_h
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698