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

1 2 3 4 5 6 7 8 91011>>

  /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
88 // These match the RenderView methods.
105 RenderView* render_view() const;
109 explicit RenderViewObserver(RenderView* render_view);
116 void Observe(RenderView* render_view);
121 // This is called by the RenderView when it's going away so that this object
125 RenderView* render_view_;
126 // The routing ID of the associated RenderView.
  /external/chromium_org/apps/shell/renderer/
shell_renderer_main_delegate.h 10 class RenderView;
23 // Called for each RenderView created in the renderer process, after the
25 virtual void OnViewCreated(content::RenderView* view) = 0;
  /external/chromium_org/athena/virtual_keyboard/public/
virtual_keyboard_bindings.h 11 class RenderView;
20 static VirtualKeyboardBindings* Create(content::RenderView* render_view);
  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.h 26 // There is one MalwareDOMDetails per RenderView.
32 static MalwareDOMDetails* Create(content::RenderView* render_view);
36 // this object's RenderView.
41 // Creates a MalwareDOMDetails for the specified RenderView.
43 // the RenderView.
44 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/content/public/test/
layouttest_support.h 30 class RenderView;
46 const base::Callback<void(RenderView*, WebTestProxyBase*)>& callback);
61 RenderView* render_view,
71 int GetLocalSessionHistoryLength(RenderView* render_view);
74 void SyncNavigationState(RenderView* render_view);
79 void SetFocusAndActivate(RenderView* render_view, bool enable);
82 void ForceResizeRenderView(RenderView* render_view,
86 void SetDeviceScaleFactor(RenderView* render_view, float factor);
89 void SetDeviceColorProfile(RenderView* render_view, const std::string& name);
96 void UseSynchronousResizeMode(RenderView* render_view, bool enable)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingReasonFinder.h 15 class RenderView;
20 explicit CompositingReasonFinder(RenderView&);
41 RenderView& m_renderView;
  /external/chromium_org/content/shell/renderer/
shell_render_view_observer.h 16 class RenderView;
21 explicit ShellRenderViewObserver(RenderView* render_view);
  /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/renderer/
web_ui_setup_impl.cc 24 RenderView* render_view = RenderView::FromRoutingID(view_routing_id);
  /external/chromium_org/components/autofill/content/renderer/
test_password_autofill_agent.cc 10 content::RenderView* render_view)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.cpp 22 #include "core/rendering/RenderView.h"
50 RenderView::RenderView(Document* document)
74 RenderView::~RenderView()
78 bool RenderView::hitTest(const HitTestRequest& request, HitTestResult& result)
83 bool RenderView::hitTest(const HitTestRequest& request, const HitTestLocation& location, HitTestResult& result)
85 TRACE_EVENT0("blink", "RenderView::hitTest");
96 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const
101 void RenderView::updateLogicalWidth(
    [all...]
  /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:

Completed in 3081 milliseconds

1 2 3 4 5 6 7 8 91011>>