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

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

Issue 225393002: Apply OwnPtr|PassOwnPtr to m_validationMessageClient and setValidationMessageClient() in Page class (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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/page/Page.cpp ('k') | 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; 735 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy;
736 736
737 UserMediaClientImpl m_userMediaClientImpl; 737 UserMediaClientImpl m_userMediaClientImpl;
738 MediaKeysClientImpl m_mediaKeysClientImpl; 738 MediaKeysClientImpl m_mediaKeysClientImpl;
739 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; 739 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
740 WebPoint m_positionOnFlingStart; 740 WebPoint m_positionOnFlingStart;
741 WebPoint m_globalPositionOnFlingStart; 741 WebPoint m_globalPositionOnFlingStart;
742 int m_flingModifier; 742 int m_flingModifier;
743 bool m_flingSourceDevice; 743 bool m_flingSourceDevice;
744 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; 744 Vector<OwnPtr<LinkHighlight> > m_linkHighlights;
745 OwnPtr<ValidationMessageClientImpl> m_validationMessage;
746 OwnPtr<FullscreenController> m_fullscreenController; 745 OwnPtr<FullscreenController> m_fullscreenController;
747 746
748 bool m_showFPSCounter; 747 bool m_showFPSCounter;
749 bool m_showPaintRects; 748 bool m_showPaintRects;
750 bool m_showDebugBorders; 749 bool m_showDebugBorders;
751 bool m_continuousPaintingEnabled; 750 bool m_continuousPaintingEnabled;
752 bool m_showScrollBottleneckRects; 751 bool m_showScrollBottleneckRects;
753 WebColor m_baseBackgroundColor; 752 WebColor m_baseBackgroundColor;
754 WebColor m_backgroundColorOverride; 753 WebColor m_backgroundColorOverride;
755 float m_zoomFactorOverride; 754 float m_zoomFactorOverride;
756 }; 755 };
757 756
758 // We have no ways to check if the specified WebView is an instance of 757 // We have no ways to check if the specified WebView is an instance of
759 // WebViewImpl because WebViewImpl is the only implementation of WebView. 758 // WebViewImpl because WebViewImpl is the only implementation of WebView.
760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 759 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
761 760
762 } // namespace blink 761 } // namespace blink
763 762
764 #endif 763 #endif
OLDNEW
« no previous file with comments | « Source/core/page/Page.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698