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

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

Issue 637083002: Sets the default background color of inline signin and user manager to grey (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 2 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_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 int error_code) override; 135 int error_code) override;
136 virtual void Destroy() override; 136 virtual void Destroy() override;
137 virtual void SetTooltipText(const base::string16& tooltip_text) override; 137 virtual void SetTooltipText(const base::string16& tooltip_text) override;
138 virtual void SelectionChanged(const base::string16& text, 138 virtual void SelectionChanged(const base::string16& text,
139 size_t offset, 139 size_t offset,
140 const gfx::Range& range) override; 140 const gfx::Range& range) override;
141 virtual void SelectionBoundsChanged( 141 virtual void SelectionBoundsChanged(
142 const ViewHostMsg_SelectionBounds_Params& params) override; 142 const ViewHostMsg_SelectionBounds_Params& params) override;
143 virtual void AcceleratedSurfaceInitialized(int route_id) override; 143 virtual void AcceleratedSurfaceInitialized(int route_id) override;
144 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) override; 144 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) override;
145 virtual void SetBackgroundOpaque(bool transparent) override; 145 virtual void SetBackgroundColor(SkColor color) override;
146 virtual void CopyFromCompositingSurface( 146 virtual void CopyFromCompositingSurface(
147 const gfx::Rect& src_subrect, 147 const gfx::Rect& src_subrect,
148 const gfx::Size& dst_size, 148 const gfx::Size& dst_size,
149 CopyFromCompositingSurfaceCallback& callback, 149 CopyFromCompositingSurfaceCallback& callback,
150 const SkColorType color_type) override; 150 const SkColorType color_type) override;
151 virtual void CopyFromCompositingSurfaceToVideoFrame( 151 virtual void CopyFromCompositingSurfaceToVideoFrame(
152 const gfx::Rect& src_subrect, 152 const gfx::Rect& src_subrect,
153 const scoped_refptr<media::VideoFrame>& target, 153 const scoped_refptr<media::VideoFrame>& target,
154 const base::Callback<void(bool)>& callback) override; 154 const base::Callback<void(bool)>& callback) override;
155 virtual bool CanCopyToVideoFrame() const override; 155 virtual bool CanCopyToVideoFrame() const override;
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 gfx::Vector2dF last_scroll_offset_; 417 gfx::Vector2dF last_scroll_offset_;
418 418
419 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; 419 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_;
420 420
421 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 421 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
422 }; 422 };
423 423
424 } // namespace content 424 } // namespace content
425 425
426 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 426 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698