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

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

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix an Android compile error Created 4 years 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; 662 void LostCapture(RenderWidgetHostImpl* render_widget_host) override;
663 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; 663 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override;
664 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; 664 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override;
665 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, 665 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host,
666 const std::vector<uint8_t>& proto) override; 666 const std::vector<uint8_t>& proto) override;
667 void OnRenderFrameProxyVisibilityChanged(bool visible) override; 667 void OnRenderFrameProxyVisibilityChanged(bool visible) override;
668 void SendScreenRects() override; 668 void SendScreenRects() override;
669 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; 669 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override;
670 TextInputManager* GetTextInputManager() override; 670 TextInputManager* GetTextInputManager() override;
671 bool OnUpdateDragCursor() override; 671 bool OnUpdateDragCursor() override;
672 std::string GetRapporCommittedUrl() override;
672 673
673 // RenderFrameHostManager::Delegate ------------------------------------------ 674 // RenderFrameHostManager::Delegate ------------------------------------------
674 675
675 bool CreateRenderViewForRenderManager( 676 bool CreateRenderViewForRenderManager(
676 RenderViewHost* render_view_host, 677 RenderViewHost* render_view_host,
677 int opener_frame_routing_id, 678 int opener_frame_routing_id,
678 int proxy_routing_id, 679 int proxy_routing_id,
679 const FrameReplicationState& replicated_frame_state) override; 680 const FrameReplicationState& replicated_frame_state) override;
680 void CreateRenderWidgetHostViewForRenderManager( 681 void CreateRenderWidgetHostViewForRenderManager(
681 RenderViewHost* render_view_host) override; 682 RenderViewHost* render_view_host) override;
(...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after
1491 // Adds/removes a callback called on creation of each new WebContents. 1492 // Adds/removes a callback called on creation of each new WebContents.
1492 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1493 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1493 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1494 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1494 1495
1495 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1496 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1496 }; 1497 };
1497 1498
1498 } // namespace content 1499 } // namespace content
1499 1500
1500 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1501 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698