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

Side by Side Diff: chrome/renderer/chrome_render_view_observer.h

Issue 226093007: Convert Chrome usages of WebFrame to WebLocalFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_view_observer.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 CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 5 #ifndef CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ChromeRenderViewObserver( 42 ChromeRenderViewObserver(
43 content::RenderView* render_view, 43 content::RenderView* render_view,
44 ChromeRenderProcessObserver* chrome_render_process_observer); 44 ChromeRenderProcessObserver* chrome_render_process_observer);
45 virtual ~ChromeRenderViewObserver(); 45 virtual ~ChromeRenderViewObserver();
46 46
47 private: 47 private:
48 // RenderViewObserver implementation. 48 // RenderViewObserver implementation.
49 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 49 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
50 virtual void DidStartLoading() OVERRIDE; 50 virtual void DidStartLoading() OVERRIDE;
51 virtual void DidStopLoading() OVERRIDE; 51 virtual void DidStopLoading() OVERRIDE;
52 virtual void DidCommitProvisionalLoad(blink::WebFrame* frame, 52 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame,
53 bool is_new_navigation) OVERRIDE; 53 bool is_new_navigation) OVERRIDE;
54 virtual void DetailedConsoleMessageAdded(const base::string16& message, 54 virtual void DetailedConsoleMessageAdded(const base::string16& message,
55 const base::string16& source, 55 const base::string16& source,
56 const base::string16& stack_trace, 56 const base::string16& stack_trace,
57 int32 line_number, 57 int32 line_number,
58 int32 severity_level) OVERRIDE; 58 int32 severity_level) OVERRIDE;
59 virtual void Navigate(const GURL& url) OVERRIDE; 59 virtual void Navigate(const GURL& url) OVERRIDE;
60 60
61 void OnWebUIJavaScript(const base::string16& javascript); 61 void OnWebUIJavaScript(const base::string16& javascript);
62 void OnSetClientSidePhishingDetection(bool enable_phishing_detection); 62 void OnSetClientSidePhishingDetection(bool enable_phishing_detection);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 // A color page overlay when visually de-emaphasized. 111 // A color page overlay when visually de-emaphasized.
112 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_; 112 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_;
113 113
114 // Used to delay calling CapturePageInfo. 114 // Used to delay calling CapturePageInfo.
115 base::Timer capture_timer_; 115 base::Timer capture_timer_;
116 116
117 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); 117 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver);
118 }; 118 };
119 119
120 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 120 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_view_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698