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

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

Issue 89873002: Ensure that the OSK on Windows 8 shows up when we tap on an editable field in any WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years 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 | « chrome/common/render_messages.h ('k') | 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 bool notify_result; 65 bool notify_result;
66 }; 66 };
67 67
68 // RenderViewObserver implementation. 68 // RenderViewObserver implementation.
69 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 69 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
70 virtual void DidStartLoading() OVERRIDE; 70 virtual void DidStartLoading() OVERRIDE;
71 virtual void DidStopLoading() OVERRIDE; 71 virtual void DidStopLoading() OVERRIDE;
72 virtual void DidCommitProvisionalLoad(blink::WebFrame* frame, 72 virtual void DidCommitProvisionalLoad(blink::WebFrame* frame,
73 bool is_new_navigation) OVERRIDE; 73 bool is_new_navigation) OVERRIDE;
74 virtual void DidClearWindowObject(blink::WebFrame* frame) OVERRIDE; 74 virtual void DidClearWindowObject(blink::WebFrame* frame) OVERRIDE;
75 virtual void DidHandleGestureEvent(
76 const blink::WebGestureEvent& event) OVERRIDE;
77 virtual void DetailedConsoleMessageAdded(const base::string16& message, 75 virtual void DetailedConsoleMessageAdded(const base::string16& message,
78 const base::string16& source, 76 const base::string16& source,
79 const base::string16& stack_trace, 77 const base::string16& stack_trace,
80 int32 line_number, 78 int32 line_number,
81 int32 severity_level) OVERRIDE; 79 int32 severity_level) OVERRIDE;
82 80
83 // blink::WebPermissionClient implementation. 81 // blink::WebPermissionClient implementation.
84 virtual bool allowDatabase(blink::WebFrame* frame, 82 virtual bool allowDatabase(blink::WebFrame* frame,
85 const blink::WebString& name, 83 const blink::WebString& name,
86 const blink::WebString& display_name, 84 const blink::WebString& display_name,
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 // A color page overlay when visually de-emaphasized. 203 // A color page overlay when visually de-emaphasized.
206 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_; 204 scoped_ptr<WebViewColorOverlay> dimmed_color_overlay_;
207 205
208 // Used to delay calling CapturePageInfo. 206 // Used to delay calling CapturePageInfo.
209 base::Timer capture_timer_; 207 base::Timer capture_timer_;
210 208
211 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); 209 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver);
212 }; 210 };
213 211
214 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 212 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/chrome_render_view_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698