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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 986823002: De-dupe copy requests for tab capture in DelegatedFrameHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 3 is enough! :) Created 5 years, 9 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
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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 SkippedDelegatedFrames); 382 SkippedDelegatedFrames);
383 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, OutputSurfaceIdChange); 383 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, OutputSurfaceIdChange);
384 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 384 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
385 DiscardDelegatedFrames); 385 DiscardDelegatedFrames);
386 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 386 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
387 DiscardDelegatedFramesWithLocking); 387 DiscardDelegatedFramesWithLocking);
388 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, SoftwareDPIChange); 388 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, SoftwareDPIChange);
389 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 389 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
390 UpdateCursorIfOverSelf); 390 UpdateCursorIfOverSelf);
391 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraCopyRequestTest, 391 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraCopyRequestTest,
392 DedupeFrameSubscriberRequests);
393 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraCopyRequestTest,
392 DestroyedAfterCopyRequest); 394 DestroyedAfterCopyRequest);
393 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 395 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
394 VisibleViewportTest); 396 VisibleViewportTest);
395 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 397 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
396 OverscrollResetsOnBlur); 398 OverscrollResetsOnBlur);
397 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, 399 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest,
398 FinishCompositionByMouse); 400 FinishCompositionByMouse);
399 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, 401 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
400 WebContentsViewReparent); 402 WebContentsViewReparent);
401 403
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 // compositing surface and showing the disambiguation popup. 652 // compositing surface and showing the disambiguation popup.
651 gfx::Vector2dF disambiguation_scroll_offset_; 653 gfx::Vector2dF disambiguation_scroll_offset_;
652 654
653 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 655 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
654 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 656 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
655 }; 657 };
656 658
657 } // namespace content 659 } // namespace content
658 660
659 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 661 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698