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

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

Issue 338713002: Remove duplicated provideMediaKeysTo() in MediaKeysClient.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/web/MediaKeysClientImpl.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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "public/platform/WebString.h" 43 #include "public/platform/WebString.h"
44 #include "public/web/WebInputEvent.h" 44 #include "public/web/WebInputEvent.h"
45 #include "public/web/WebNavigationPolicy.h" 45 #include "public/web/WebNavigationPolicy.h"
46 #include "public/web/WebView.h" 46 #include "public/web/WebView.h"
47 #include "web/BackForwardClientImpl.h" 47 #include "web/BackForwardClientImpl.h"
48 #include "web/ChromeClientImpl.h" 48 #include "web/ChromeClientImpl.h"
49 #include "web/ContextMenuClientImpl.h" 49 #include "web/ContextMenuClientImpl.h"
50 #include "web/DragClientImpl.h" 50 #include "web/DragClientImpl.h"
51 #include "web/EditorClientImpl.h" 51 #include "web/EditorClientImpl.h"
52 #include "web/InspectorClientImpl.h" 52 #include "web/InspectorClientImpl.h"
53 #include "web/MediaKeysClientImpl.h"
54 #include "web/PageOverlayList.h" 53 #include "web/PageOverlayList.h"
55 #include "web/PageScaleConstraintsSet.h" 54 #include "web/PageScaleConstraintsSet.h"
56 #include "web/PageWidgetDelegate.h" 55 #include "web/PageWidgetDelegate.h"
57 #include "web/SpellCheckerClientImpl.h" 56 #include "web/SpellCheckerClientImpl.h"
58 #include "web/StorageClientImpl.h" 57 #include "web/StorageClientImpl.h"
59 #include "wtf/OwnPtr.h" 58 #include "wtf/OwnPtr.h"
60 #include "wtf/RefCounted.h" 59 #include "wtf/RefCounted.h"
61 #include "wtf/Vector.h" 60 #include "wtf/Vector.h"
62 61
63 namespace WebCore { 62 namespace WebCore {
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 WebCore::GraphicsLayer* m_rootGraphicsLayer; 683 WebCore::GraphicsLayer* m_rootGraphicsLayer;
685 WebCore::GraphicsLayer* m_rootTransformLayer; 684 WebCore::GraphicsLayer* m_rootTransformLayer;
686 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; 685 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory;
687 bool m_isAcceleratedCompositingActive; 686 bool m_isAcceleratedCompositingActive;
688 bool m_layerTreeViewCommitsDeferred; 687 bool m_layerTreeViewCommitsDeferred;
689 bool m_matchesHeuristicsForGpuRasterization; 688 bool m_matchesHeuristicsForGpuRasterization;
690 // If true, the graphics context is being restored. 689 // If true, the graphics context is being restored.
691 bool m_recreatingGraphicsContext; 690 bool m_recreatingGraphicsContext;
692 static const WebInputEvent* m_currentInputEvent; 691 static const WebInputEvent* m_currentInputEvent;
693 692
694 MediaKeysClientImpl m_mediaKeysClientImpl;
gyuyoung-inactive 2014/06/23 06:33:07 m_mediaKeysClientImpl instance is only used by Med
695 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; 693 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
696 WebPoint m_positionOnFlingStart; 694 WebPoint m_positionOnFlingStart;
697 WebPoint m_globalPositionOnFlingStart; 695 WebPoint m_globalPositionOnFlingStart;
698 int m_flingModifier; 696 int m_flingModifier;
699 bool m_flingSourceDevice; 697 bool m_flingSourceDevice;
700 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; 698 Vector<OwnPtr<LinkHighlight> > m_linkHighlights;
701 OwnPtr<FullscreenController> m_fullscreenController; 699 OwnPtr<FullscreenController> m_fullscreenController;
702 700
703 bool m_showFPSCounter; 701 bool m_showFPSCounter;
704 bool m_showPaintRects; 702 bool m_showPaintRects;
705 bool m_showDebugBorders; 703 bool m_showDebugBorders;
706 bool m_continuousPaintingEnabled; 704 bool m_continuousPaintingEnabled;
707 bool m_showScrollBottleneckRects; 705 bool m_showScrollBottleneckRects;
708 WebColor m_baseBackgroundColor; 706 WebColor m_baseBackgroundColor;
709 WebColor m_backgroundColorOverride; 707 WebColor m_backgroundColorOverride;
710 float m_zoomFactorOverride; 708 float m_zoomFactorOverride;
711 709
712 bool m_userGestureObserved; 710 bool m_userGestureObserved;
713 }; 711 };
714 712
715 // 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
716 // WebViewImpl because WebViewImpl is the only implementation of WebView. 714 // WebViewImpl because WebViewImpl is the only implementation of WebView.
717 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 715 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
718 716
719 } // namespace blink 717 } // namespace blink
720 718
721 #endif 719 #endif
OLDNEW
« no previous file with comments | « Source/web/MediaKeysClientImpl.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698