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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 2503563002: Drag-and-drop: updateDragCursor (Closed)
Patch Set: Addressed comments by nick@. Created 4 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 RenderWidgetHostImpl* render_widget_host) const override; 655 RenderWidgetHostImpl* render_widget_host) const override;
656 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; 656 void LostCapture(RenderWidgetHostImpl* render_widget_host) override;
657 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; 657 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override;
658 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; 658 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override;
659 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, 659 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host,
660 const std::vector<uint8_t>& proto) override; 660 const std::vector<uint8_t>& proto) override;
661 void OnRenderFrameProxyVisibilityChanged(bool visible) override; 661 void OnRenderFrameProxyVisibilityChanged(bool visible) override;
662 void SendScreenRects() override; 662 void SendScreenRects() override;
663 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; 663 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override;
664 TextInputManager* GetTextInputManager() override; 664 TextInputManager* GetTextInputManager() override;
665 bool OnUpdateDragCursor() override;
665 666
666 // RenderFrameHostManager::Delegate ------------------------------------------ 667 // RenderFrameHostManager::Delegate ------------------------------------------
667 668
668 bool CreateRenderViewForRenderManager( 669 bool CreateRenderViewForRenderManager(
669 RenderViewHost* render_view_host, 670 RenderViewHost* render_view_host,
670 int opener_frame_routing_id, 671 int opener_frame_routing_id,
671 int proxy_routing_id, 672 int proxy_routing_id,
672 const FrameReplicationState& replicated_frame_state) override; 673 const FrameReplicationState& replicated_frame_state) override;
673 void CreateRenderWidgetHostViewForRenderManager( 674 void CreateRenderWidgetHostViewForRenderManager(
674 RenderViewHost* render_view_host) override; 675 RenderViewHost* render_view_host) override;
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 // Adds/removes a callback called on creation of each new WebContents. 1454 // Adds/removes a callback called on creation of each new WebContents.
1454 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1455 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1455 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1456 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1456 1457
1457 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1458 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1458 }; 1459 };
1459 1460
1460 } // namespace content 1461 } // namespace content
1461 1462
1462 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1463 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698