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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 444813002: Remove BrowserPlugin's -internal-attach method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment Created 6 years, 4 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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 virtual bool GetContentStateImmediately() const OVERRIDE; 476 virtual bool GetContentStateImmediately() const OVERRIDE;
477 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; 477 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE;
478 virtual void DidStartLoading() OVERRIDE; 478 virtual void DidStartLoading() OVERRIDE;
479 virtual void DidStopLoading() OVERRIDE; 479 virtual void DidStopLoading() OVERRIDE;
480 virtual void Repaint(const gfx::Size& size) OVERRIDE; 480 virtual void Repaint(const gfx::Size& size) OVERRIDE;
481 virtual void SetEditCommandForNextKeyEvent(const std::string& name, 481 virtual void SetEditCommandForNextKeyEvent(const std::string& name,
482 const std::string& value) OVERRIDE; 482 const std::string& value) OVERRIDE;
483 virtual void ClearEditCommands() OVERRIDE; 483 virtual void ClearEditCommands() OVERRIDE;
484 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE; 484 virtual SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const OVERRIDE;
485 virtual const std::string& GetAcceptLanguages() const OVERRIDE; 485 virtual const std::string& GetAcceptLanguages() const OVERRIDE;
486
jam 2014/08/15 17:41:04 ?
Fady Samuel 2014/08/16 23:24:30 Removed.
486 #if defined(OS_ANDROID) 487 #if defined(OS_ANDROID)
487 virtual void UpdateTopControlsState(TopControlsState constraints, 488 virtual void UpdateTopControlsState(TopControlsState constraints,
488 TopControlsState current, 489 TopControlsState current,
489 bool animate) OVERRIDE; 490 bool animate) OVERRIDE;
490 #endif 491 #endif
491 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } 492 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; }
492 493
493 // Please do not add your stuff randomly to the end here. If there is an 494 // Please do not add your stuff randomly to the end here. If there is an
494 // appropriate section, add it there. If not, there are some random functions 495 // appropriate section, add it there. If not, there are some random functions
495 // nearer to the top you can add it to. 496 // nearer to the top you can add it to.
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 // use the Observer interface to filter IPC messages and receive frame change 1147 // use the Observer interface to filter IPC messages and receive frame change
1147 // notifications. 1148 // notifications.
1148 // --------------------------------------------------------------------------- 1149 // ---------------------------------------------------------------------------
1149 1150
1150 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1151 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1151 }; 1152 };
1152 1153
1153 } // namespace content 1154 } // namespace content
1154 1155
1155 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698