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

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

Issue 1884043002: Use black for resize gutter in tab fullscreen mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 438
439 // Called after |window_| is parented to a WindowEventDispatcher. 439 // Called after |window_| is parented to a WindowEventDispatcher.
440 void AddedToRootWindow(); 440 void AddedToRootWindow();
441 441
442 // Called prior to removing |window_| from a WindowEventDispatcher. 442 // Called prior to removing |window_| from a WindowEventDispatcher.
443 void RemovingFromRootWindow(); 443 void RemovingFromRootWindow();
444 444
445 // DelegatedFrameHostClient implementation. 445 // DelegatedFrameHostClient implementation.
446 ui::Layer* DelegatedFrameHostGetLayer() const override; 446 ui::Layer* DelegatedFrameHostGetLayer() const override;
447 bool DelegatedFrameHostIsVisible() const override; 447 bool DelegatedFrameHostIsVisible() const override;
448 void DelegatedFrameHostOverrideGutterColor(SkColor* color) const override;
448 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override; 449 gfx::Size DelegatedFrameHostDesiredSizeInDIP() const override;
449 bool DelegatedFrameCanCreateResizeLock() const override; 450 bool DelegatedFrameCanCreateResizeLock() const override;
450 std::unique_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock( 451 std::unique_ptr<ResizeLock> DelegatedFrameHostCreateResizeLock(
451 bool defer_compositor_lock) override; 452 bool defer_compositor_lock) override;
452 void DelegatedFrameHostResizeLockWasReleased() override; 453 void DelegatedFrameHostResizeLockWasReleased() override;
453 void DelegatedFrameHostSendCompositorSwapAck( 454 void DelegatedFrameHostSendCompositorSwapAck(
454 int output_surface_id, 455 int output_surface_id,
455 const cc::CompositorFrameAck& ack) override; 456 const cc::CompositorFrameAck& ack) override;
456 void DelegatedFrameHostSendReclaimCompositorResources( 457 void DelegatedFrameHostSendReclaimCompositorResources(
457 int output_surface_id, 458 int output_surface_id,
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 bool disable_input_event_router_for_testing_; 692 bool disable_input_event_router_for_testing_;
692 693
693 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 694 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
694 695
695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 696 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
696 }; 697 };
697 698
698 } // namespace content 699 } // namespace content
699 700
700 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 701 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698