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_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: nits fixed 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 int error_code) override; 133 int error_code) override;
134 virtual void Destroy() override; 134 virtual void Destroy() override;
135 virtual void SetTooltipText(const base::string16& tooltip_text) override; 135 virtual void SetTooltipText(const base::string16& tooltip_text) override;
136 virtual void SelectionChanged(const base::string16& text, 136 virtual void SelectionChanged(const base::string16& text,
137 size_t offset, 137 size_t offset,
138 const gfx::Range& range) override; 138 const gfx::Range& range) override;
139 virtual void SelectionBoundsChanged( 139 virtual void SelectionBoundsChanged(
140 const ViewHostMsg_SelectionBounds_Params& params) override; 140 const ViewHostMsg_SelectionBounds_Params& params) override;
141 virtual void AcceleratedSurfaceInitialized(int route_id) override; 141 virtual void AcceleratedSurfaceInitialized(int route_id) override;
142 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) override; 142 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) override;
143 virtual void SetBackgroundOpaque(bool transparent) override; 143 virtual void SetBackgroundColor(SkColor color) override;
144 virtual void CopyFromCompositingSurface( 144 virtual void CopyFromCompositingSurface(
145 const gfx::Rect& src_subrect, 145 const gfx::Rect& src_subrect,
146 const gfx::Size& dst_size, 146 const gfx::Size& dst_size,
147 CopyFromCompositingSurfaceCallback& callback, 147 CopyFromCompositingSurfaceCallback& callback,
148 const SkColorType color_type) override; 148 const SkColorType color_type) override;
149 virtual void CopyFromCompositingSurfaceToVideoFrame( 149 virtual void CopyFromCompositingSurfaceToVideoFrame(
150 const gfx::Rect& src_subrect, 150 const gfx::Rect& src_subrect,
151 const scoped_refptr<media::VideoFrame>& target, 151 const scoped_refptr<media::VideoFrame>& target,
152 const base::Callback<void(bool)>& callback) override; 152 const base::Callback<void(bool)>& callback) override;
153 virtual bool CanCopyToVideoFrame() const override; 153 virtual bool CanCopyToVideoFrame() const override;
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 gfx::Vector2dF last_scroll_offset_; 414 gfx::Vector2dF last_scroll_offset_;
415 415
416 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; 416 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_;
417 417
418 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 418 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
419 }; 419 };
420 420
421 } // namespace content 421 } // namespace content
422 422
423 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 423 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698