| OLD | NEW |
| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 blink::WebFrameWidget* GetWebFrameWidget() override; | 415 blink::WebFrameWidget* GetWebFrameWidget() override; |
| 416 bool ShouldDisplayScrollbars(int width, int height) const override; | 416 bool ShouldDisplayScrollbars(int width, int height) const override; |
| 417 int GetEnabledBindings() const override; | 417 int GetEnabledBindings() const override; |
| 418 bool GetContentStateImmediately() const override; | 418 bool GetContentStateImmediately() const override; |
| 419 void DidStartLoading() override; | 419 void DidStartLoading() override; |
| 420 void DidStopLoading() override; | 420 void DidStopLoading() override; |
| 421 void Repaint(const gfx::Size& size) override; | 421 void Repaint(const gfx::Size& size) override; |
| 422 void SetEditCommandForNextKeyEvent(const std::string& name, | 422 void SetEditCommandForNextKeyEvent(const std::string& name, |
| 423 const std::string& value) override; | 423 const std::string& value) override; |
| 424 void ClearEditCommands() override; | 424 void ClearEditCommands() override; |
| 425 SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const override; | |
| 426 const std::string& GetAcceptLanguages() const override; | 425 const std::string& GetAcceptLanguages() const override; |
| 427 #if defined(OS_ANDROID) | 426 #if defined(OS_ANDROID) |
| 428 void UpdateTopControlsState(TopControlsState constraints, | 427 void UpdateTopControlsState(TopControlsState constraints, |
| 429 TopControlsState current, | 428 TopControlsState current, |
| 430 bool animate) override; | 429 bool animate) override; |
| 431 #endif | 430 #endif |
| 432 void ConvertViewportToWindowViaWidget(blink::WebRect* rect) override; | 431 void ConvertViewportToWindowViaWidget(blink::WebRect* rect) override; |
| 433 gfx::RectF ElementBoundsInWindow(const blink::WebElement& element) override; | 432 gfx::RectF ElementBoundsInWindow(const blink::WebElement& element) override; |
| 434 bool HasAddedInputHandler() const override; | 433 bool HasAddedInputHandler() const override; |
| 435 | 434 |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 // use the Observer interface to filter IPC messages and receive frame change | 927 // use the Observer interface to filter IPC messages and receive frame change |
| 929 // notifications. | 928 // notifications. |
| 930 // --------------------------------------------------------------------------- | 929 // --------------------------------------------------------------------------- |
| 931 | 930 |
| 932 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 931 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 933 }; | 932 }; |
| 934 | 933 |
| 935 } // namespace content | 934 } // namespace content |
| 936 | 935 |
| 937 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 936 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |