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

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

Issue 2907463003: Remove window.status plumbing, it's unused and the spec says it's a dummy (Closed)
Patch Set: Drop accidental change Created 3 years, 7 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 | « no previous file | 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 blink::WebTextDirection main_text_hint, 300 blink::WebTextDirection main_text_hint,
301 base::string16* sub_text, 301 base::string16* sub_text,
302 blink::WebTextDirection sub_text_hint); 302 blink::WebTextDirection sub_text_hint);
303 void ShowValidationMessage(const blink::WebRect& anchor_in_viewport, 303 void ShowValidationMessage(const blink::WebRect& anchor_in_viewport,
304 const blink::WebString& main_text, 304 const blink::WebString& main_text,
305 blink::WebTextDirection main_text_hint, 305 blink::WebTextDirection main_text_hint,
306 const blink::WebString& sub_text, 306 const blink::WebString& sub_text,
307 blink::WebTextDirection hint) override; 307 blink::WebTextDirection hint) override;
308 void HideValidationMessage() override; 308 void HideValidationMessage() override;
309 void MoveValidationMessage(const blink::WebRect& anchor_in_viewport) override; 309 void MoveValidationMessage(const blink::WebRect& anchor_in_viewport) override;
310 void SetStatusText(const blink::WebString& text) override;
311 void SetMouseOverURL(const blink::WebURL& url) override; 310 void SetMouseOverURL(const blink::WebURL& url) override;
312 void SetKeyboardFocusURL(const blink::WebURL& url) override; 311 void SetKeyboardFocusURL(const blink::WebURL& url) override;
313 bool AcceptsLoadDrops() override; 312 bool AcceptsLoadDrops() override;
314 void FocusNext() override; 313 void FocusNext() override;
315 void FocusPrevious() override; 314 void FocusPrevious() override;
316 void FocusedNodeChanged(const blink::WebNode& fromNode, 315 void FocusedNodeChanged(const blink::WebNode& fromNode,
317 const blink::WebNode& toNode) override; 316 const blink::WebNode& toNode) override;
318 void DidUpdateLayout() override; 317 void DidUpdateLayout() override;
319 #if defined(OS_ANDROID) 318 #if defined(OS_ANDROID)
320 bool DidTapMultipleTargets( 319 bool DidTapMultipleTargets(
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 // --------------------------------------------------------------------------- 828 // ---------------------------------------------------------------------------
830 829
831 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; 830 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_;
832 831
833 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 832 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
834 }; 833 };
835 834
836 } // namespace content 835 } // namespace content
837 836
838 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 837 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698