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

Side by Side Diff: Source/web/WebViewImpl.h

Issue 362403003: Prevent spinning up a layer tree view after closing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/web/WebViewImpl.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 RefPtr<WebCore::UserGestureToken> m_mouseCaptureGestureToken; 676 RefPtr<WebCore::UserGestureToken> m_mouseCaptureGestureToken;
677 677
678 WebCore::IntRect m_rootLayerScrollDamage; 678 WebCore::IntRect m_rootLayerScrollDamage;
679 WebLayerTreeView* m_layerTreeView; 679 WebLayerTreeView* m_layerTreeView;
680 WebLayer* m_rootLayer; 680 WebLayer* m_rootLayer;
681 WebCore::GraphicsLayer* m_rootGraphicsLayer; 681 WebCore::GraphicsLayer* m_rootGraphicsLayer;
682 WebCore::GraphicsLayer* m_rootTransformLayer; 682 WebCore::GraphicsLayer* m_rootTransformLayer;
683 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; 683 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory;
684 bool m_isAcceleratedCompositingActive; 684 bool m_isAcceleratedCompositingActive;
685 bool m_layerTreeViewCommitsDeferred; 685 bool m_layerTreeViewCommitsDeferred;
686 bool m_layerTreeViewClosed;
686 bool m_matchesHeuristicsForGpuRasterization; 687 bool m_matchesHeuristicsForGpuRasterization;
687 // If true, the graphics context is being restored. 688 // If true, the graphics context is being restored.
688 bool m_recreatingGraphicsContext; 689 bool m_recreatingGraphicsContext;
689 static const WebInputEvent* m_currentInputEvent; 690 static const WebInputEvent* m_currentInputEvent;
690 691
691 MediaKeysClientImpl m_mediaKeysClientImpl; 692 MediaKeysClientImpl m_mediaKeysClientImpl;
692 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; 693 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
693 WebPoint m_positionOnFlingStart; 694 WebPoint m_positionOnFlingStart;
694 WebPoint m_globalPositionOnFlingStart; 695 WebPoint m_globalPositionOnFlingStart;
695 int m_flingModifier; 696 int m_flingModifier;
(...skipping 13 matching lines...) Expand all
709 bool m_userGestureObserved; 710 bool m_userGestureObserved;
710 }; 711 };
711 712
712 // We have no ways to check if the specified WebView is an instance of 713 // We have no ways to check if the specified WebView is an instance of
713 // WebViewImpl because WebViewImpl is the only implementation of WebView. 714 // WebViewImpl because WebViewImpl is the only implementation of WebView.
714 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 715 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
715 716
716 } // namespace blink 717 } // namespace blink
717 718
718 #endif 719 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698