HomeSort by relevance Sort by last modified time
    Searched full:renderview (Results 1 - 25 of 454) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/paint/
ViewPainter.h 13 class RenderView;
17 ViewPainter(RenderView& renderView) : m_renderView(renderView) { }
25 RenderView& m_renderView;
  /external/chromium_org/chrome/renderer/extensions/
tab_finder.h 13 class RenderView;
18 // Finds the top RenderView associated with a tab ID.
21 // Returns the top RenderView with |tab_id|, or NULL if none is found.
22 static content::RenderView* Find(int tab_id);
29 virtual bool Visit(content::RenderView* render_view) OVERRIDE;
32 content::RenderView* view_;
tabs_custom_bindings.cc 26 // Get the current RenderView so that we can send a routed IPC message from
28 content::RenderView* renderview = context()->GetRenderView(); local
29 if (!renderview)
38 renderview->Send(new ExtensionHostMsg_OpenChannelToTab(
39 renderview->GetRoutingID(), tab_id, extension_id, channel_name,
tab_finder.cc 12 using content::RenderView;
17 content::RenderView* TabFinder::Find(int tab_id) {
19 RenderView::ForEach(&finder);
28 bool TabFinder::Visit(RenderView* render_view) {
  /external/chromium_org/content/public/renderer/
render_view_observer_tracker.h 5 // Helper class used to find the RenderViewObservers for a given RenderView.
14 // MyRVO::MyRVO(RenderView* render_view)
20 // void SomeFunction(RenderView* rv) {
35 class RenderView;
40 static T* Get(const RenderView* render_view) {
44 explicit RenderViewObserverTracker(const RenderView* render_view)
53 const RenderView* render_view_;
55 static base::LazyInstance<std::map<const RenderView*, T*> >
62 base::LazyInstance<std::map<const RenderView*, T*> >
render_view_visitor.h 10 class RenderView;
15 virtual bool Visit(RenderView* render_view) = 0;
render_view_observer.h 40 class RenderView;
48 // By default, observers will be deleted when the RenderView goes away. If
87 // These match the RenderView methods.
106 RenderView* render_view() const;
110 explicit RenderViewObserver(RenderView* render_view);
117 void Observe(RenderView* render_view);
122 // This is called by the RenderView when it's going away so that this object
126 RenderView* render_view_;
127 // The routing ID of the associated RenderView.
  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.h 22 // There is one MalwareDOMDetails per RenderView.
28 static MalwareDOMDetails* Create(content::RenderView* render_view);
32 // this object's RenderView.
38 // Creates a MalwareDOMDetails for the specified RenderView.
40 // the RenderView.
41 explicit MalwareDOMDetails(content::RenderView* render_view);
phishing_classifier_delegate.h 5 // This class is used by the RenderView to interact with a PhishingClassifier.
38 // The RenderView owns us. This object takes ownership of the classifier.
41 static PhishingClassifierDelegate* Create(content::RenderView* render_view,
45 // Called by the RenderView once there is a phishing scorer available.
49 // Called by the RenderView once a page has finished loading. Updates the
58 // Called by the RenderView when a page has started loading in the given
68 PhishingClassifierDelegate(content::RenderView* render_view,
86 // Called by the RenderView when it receives a StartPhishingDetection IPC
89 // RenderView and a Scorer has been set, this will begin classification,
96 // Returns the RenderView's toplevel URL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.cpp 34 #include "core/rendering/RenderView.h"
39 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize)
42 , m_viewportWidth(renderView ? renderView->layoutViewportWidth() : 0)
43 , m_viewportHeight(renderView ? renderView->layoutViewportHeight() : 0)
51 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize)
54 , m_viewportWidth(renderView ? renderView->layoutViewportWidth() : 0
    [all...]
  /external/chromium_org/chrome/renderer/
webview_color_overlay.h 15 class RenderView;
21 WebViewColorOverlay(content::RenderView* render_view, SkColor color);
28 content::RenderView* render_view_;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingReasonFinder.h 15 class RenderView;
20 explicit CompositingReasonFinder(RenderView&);
39 RenderView& m_renderView;
  /external/chromium_org/extensions/renderer/
lazy_background_page_native_handler.h 11 class RenderView;
25 bool IsContextLazyBackgroundPage(content::RenderView* render_view,
console.h 14 class RenderView;
23 void Debug(content::RenderView* render_view, const std::string& message);
24 void Log(content::RenderView* render_view, const std::string& message);
25 void Warn(content::RenderView* render_view, const std::string& message);
26 void Error(content::RenderView* render_view, const std::string& message);
29 void Fatal(content::RenderView* render_view, const std::string& message);
31 void AddMessage(content::RenderView* render_view,
console.cc 26 // Finds the RenderView associated with a context. Note: there will be multiple
27 // contexts in each RenderView.
30 static content::RenderView* Find(v8::Handle<v8::Context> context) {
32 content::RenderView::ForEach(&finder);
40 virtual bool Visit(content::RenderView* render_view) OVERRIDE {
50 content::RenderView* found_;
93 void Debug(content::RenderView* render_view, const std::string& message) {
97 void Log(content::RenderView* render_view, const std::string& message) {
101 void Warn(content::RenderView* render_view, const std::string& message) {
105 void Error(content::RenderView* render_view, const std::string& message)
    [all...]
runtime_custom_bindings.cc 49 // Get the current RenderView so that we can send a routed IPC message from
51 content::RenderView* renderview = context()->GetRenderView(); local
52 if (!renderview)
73 renderview->Send(
74 new ExtensionHostMsg_OpenChannelToExtension(renderview->GetRoutingID(),
94 // Get the current RenderView so that we can send a routed IPC message from
96 content::RenderView* renderview = context()->GetRenderView();
97 if (!renderview)
    [all...]
request_sender.cc 81 // Get the current RenderView so that we can send a routed IPC message from
83 content::RenderView* renderview = context->GetRenderView();
84 if (!renderview)
117 renderview->Send(new ExtensionHostMsg_RequestForIOThread(
118 renderview->GetRoutingID(), params));
120 renderview->Send(
121 new ExtensionHostMsg_Request(renderview->GetRoutingID(), params));
messaging_bindings.h 19 class RenderView;
52 content::RenderView* restrict_to_render_view);
60 content::RenderView* restrict_to_render_view);
67 content::RenderView* restrict_to_render_view);
  /external/chromium_org/content/public/test/
layouttest_support.h 34 class RenderView;
50 const base::Callback<void(RenderView*, WebTestProxyBase*)>& callback);
76 int GetLocalSessionHistoryLength(RenderView* render_view);
79 void SyncNavigationState(RenderView* render_view);
84 void SetFocusAndActivate(RenderView* render_view, bool enable);
87 void ForceResizeRenderView(RenderView* render_view,
91 void SetDeviceScaleFactor(RenderView* render_view, float factor);
94 void SetDeviceColorProfile(RenderView* render_view, const std::string& name);
101 void UseSynchronousResizeMode(RenderView* render_view, bool enable);
104 void EnableAutoResizeMode(RenderView* render_view
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.cpp 22 #include "core/rendering/RenderView.h"
51 RenderView::RenderView(Document* document)
76 RenderView::~RenderView()
80 void RenderView::trace(Visitor* visitor)
88 bool RenderView::hitTest(const HitTestRequest& request, HitTestResult& result)
93 bool RenderView::hitTest(const HitTestRequest& request, const HitTestLocation& location, HitTestResult& result)
95 TRACE_EVENT0("blink", "RenderView::hitTest");
117 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedV (…)
    [all...]
PaintInvalidationState.cpp 10 #include "core/rendering/RenderView.h"
16 PaintInvalidationState::PaintInvalidationState(const RenderView& renderView)
20 , m_paintInvalidationContainer(*renderView.containerForPaintInvalidation())
22 bool establishesPaintInvalidationContainer = renderView == m_paintInvalidationContainer;
24 if (!renderView.supportsPaintInvalidationStateCachedOffsets()) {
28 FloatPoint point = renderView.localToContainerPoint(FloatPoint(), &m_paintInvalidationContainer, TraverseDocumentBoundaries);
31 m_clipRect = renderView.viewRect();
  /external/chromium_org/content/shell/renderer/
shell_render_view_observer.h 19 class RenderView;
24 explicit ShellRenderViewObserver(RenderView* render_view);
  /external/chromium_org/components/autofill/content/renderer/
test_password_autofill_agent.cc 10 content::RenderView* render_view)
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.h 29 static void RenderViewCreated(content::RenderView* render_view);
32 AwRenderViewExt(content::RenderView* render_view);
35 // RenderView::Observer:
  /external/chromium_org/content/public/browser/
web_ui_controller.h 36 // Called when RenderView is first created. This is *not* called for every
37 // page load because in some cases a RenderView will be reused. In those
41 // Called when a RenderView is reused to display a page.

Completed in 217 milliseconds

1 2 3 4 5 6 7 8 91011>>