| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 229 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
| 230 const blink::WebVector<blink::WebString>& stopped_matching_selectors); | 230 const blink::WebVector<blink::WebString>& stopped_matching_selectors); |
| 231 virtual bool shouldReportDetailedMessageForSource( | 231 virtual bool shouldReportDetailedMessageForSource( |
| 232 const blink::WebString& source); | 232 const blink::WebString& source); |
| 233 virtual void didAddMessageToConsole(const blink::WebConsoleMessage& message, | 233 virtual void didAddMessageToConsole(const blink::WebConsoleMessage& message, |
| 234 const blink::WebString& source_name, | 234 const blink::WebString& source_name, |
| 235 unsigned source_line, | 235 unsigned source_line, |
| 236 const blink::WebString& stack_trace); | 236 const blink::WebString& stack_trace); |
| 237 virtual void loadURLExternally(blink::WebLocalFrame* frame, | 237 virtual void loadURLExternally(blink::WebLocalFrame* frame, |
| 238 const blink::WebURLRequest& request, | 238 const blink::WebURLRequest& request, |
| 239 blink::WebNavigationPolicy policy); | |
| 240 virtual void loadURLExternally(blink::WebLocalFrame* frame, | |
| 241 const blink::WebURLRequest& request, | |
| 242 blink::WebNavigationPolicy policy, | 239 blink::WebNavigationPolicy policy, |
| 243 const blink::WebString& suggested_name); | 240 const blink::WebString& suggested_name); |
| 244 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. | 241 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. |
| 245 virtual blink::WebNavigationPolicy decidePolicyForNavigation( | 242 virtual blink::WebNavigationPolicy decidePolicyForNavigation( |
| 246 blink::WebLocalFrame* frame, | 243 blink::WebLocalFrame* frame, |
| 247 blink::WebDataSource::ExtraData* extra_data, | 244 blink::WebDataSource::ExtraData* extra_data, |
| 248 const blink::WebURLRequest& request, | 245 const blink::WebURLRequest& request, |
| 249 blink::WebNavigationType type, | 246 blink::WebNavigationType type, |
| 250 blink::WebNavigationPolicy default_policy, | 247 blink::WebNavigationPolicy default_policy, |
| 251 bool is_redirect); | 248 bool is_redirect); |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 | 520 |
| 524 // Holds a reference to the service which provides desktop notifications. | 521 // Holds a reference to the service which provides desktop notifications. |
| 525 NotificationProvider* notification_provider_; | 522 NotificationProvider* notification_provider_; |
| 526 | 523 |
| 527 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 524 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 528 }; | 525 }; |
| 529 | 526 |
| 530 } // namespace content | 527 } // namespace content |
| 531 | 528 |
| 532 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 529 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |