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

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

Issue 1442853005: Add IPC messages to transfer compositor protos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup Created 5 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 <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 bool user_gesture, 595 bool user_gesture,
596 bool last_unlocked_by_target) override; 596 bool last_unlocked_by_target) override;
597 gfx::Rect GetRootWindowResizerRect( 597 gfx::Rect GetRootWindowResizerRect(
598 RenderWidgetHostImpl* render_widget_host) const override; 598 RenderWidgetHostImpl* render_widget_host) const override;
599 bool IsFullscreenForCurrentTab( 599 bool IsFullscreenForCurrentTab(
600 RenderWidgetHostImpl* render_widget_host) const override; 600 RenderWidgetHostImpl* render_widget_host) const override;
601 blink::WebDisplayMode GetDisplayMode( 601 blink::WebDisplayMode GetDisplayMode(
602 RenderWidgetHostImpl* render_widget_host) const override; 602 RenderWidgetHostImpl* render_widget_host) const override;
603 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; 603 void LostCapture(RenderWidgetHostImpl* render_widget_host) override;
604 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; 604 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override;
605 void HandleCompositorProto(RenderWidgetHostImpl* render_widget_host,
606 const std::vector<char>& proto) override;
605 607
606 // RenderFrameHostManager::Delegate ------------------------------------------ 608 // RenderFrameHostManager::Delegate ------------------------------------------
607 609
608 bool CreateRenderViewForRenderManager( 610 bool CreateRenderViewForRenderManager(
609 RenderViewHost* render_view_host, 611 RenderViewHost* render_view_host,
610 int opener_frame_routing_id, 612 int opener_frame_routing_id,
611 int proxy_routing_id, 613 int proxy_routing_id,
612 const FrameReplicationState& replicated_frame_state) override; 614 const FrameReplicationState& replicated_frame_state) override;
613 void CreateRenderWidgetHostViewForRenderManager( 615 void CreateRenderWidgetHostViewForRenderManager(
614 RenderViewHost* render_view_host) override; 616 RenderViewHost* render_view_host) override;
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 // Adds/removes a callback called on creation of each new WebContents. 1349 // Adds/removes a callback called on creation of each new WebContents.
1348 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1350 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1349 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1351 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1350 1352
1351 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1353 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1352 }; 1354 };
1353 1355
1354 } // namespace content 1356 } // namespace content
1355 1357
1356 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1358 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698