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

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

Issue 1203223002: [Experimental, WIP] Demo version of extracting WebView selection data from CompositorFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « content/public/renderer/render_view.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 // RenderView implementation ------------------------------------------------- 425 // RenderView implementation -------------------------------------------------
426 426
427 bool Send(IPC::Message* message) override; 427 bool Send(IPC::Message* message) override;
428 RenderFrameImpl* GetMainRenderFrame() override; 428 RenderFrameImpl* GetMainRenderFrame() override;
429 int GetRoutingID() const override; 429 int GetRoutingID() const override;
430 gfx::Size GetSize() const override; 430 gfx::Size GetSize() const override;
431 WebPreferences& GetWebkitPreferences() override; 431 WebPreferences& GetWebkitPreferences() override;
432 void SetWebkitPreferences(const WebPreferences& preferences) override; 432 void SetWebkitPreferences(const WebPreferences& preferences) override;
433 blink::WebView* GetWebView() override; 433 blink::WebView* GetWebView() override;
434 bool IsEditableNode(const blink::WebNode& node) const override; 434 bool IsEditableNode(const blink::WebNode& node) const override;
435 bool IsPluginNode(const blink::WebNode& node) const override;
435 bool ShouldDisplayScrollbars(int width, int height) const override; 436 bool ShouldDisplayScrollbars(int width, int height) const override;
436 int GetEnabledBindings() const override; 437 int GetEnabledBindings() const override;
437 bool GetContentStateImmediately() const override; 438 bool GetContentStateImmediately() const override;
438 blink::WebPageVisibilityState GetVisibilityState() const override; 439 blink::WebPageVisibilityState GetVisibilityState() const override;
439 void DidStartLoading() override; 440 void DidStartLoading() override;
440 void DidStopLoading() override; 441 void DidStopLoading() override;
441 void Repaint(const gfx::Size& size) override; 442 void Repaint(const gfx::Size& size) override;
442 void SetEditCommandForNextKeyEvent(const std::string& name, 443 void SetEditCommandForNextKeyEvent(const std::string& name,
443 const std::string& value) override; 444 const std::string& value) override;
444 void ClearEditCommands() override; 445 void ClearEditCommands() override;
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1020 // use the Observer interface to filter IPC messages and receive frame change 1021 // use the Observer interface to filter IPC messages and receive frame change
1021 // notifications. 1022 // notifications.
1022 // --------------------------------------------------------------------------- 1023 // ---------------------------------------------------------------------------
1023 1024
1024 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1025 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1025 }; 1026 };
1026 1027
1027 } // namespace content 1028 } // namespace content
1028 1029
1029 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1030 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_view.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698