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

Side by Side Diff: webkit/glue/webview_impl.h

Issue 39252: A tricky fix for Issue 1845.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « webkit/glue/webtextdirection.h ('k') | webkit/glue/webview_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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_WEBVIEW_IMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H__
6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 virtual void MouseCaptureLost(); 68 virtual void MouseCaptureLost();
69 virtual void SetFocus(bool enable); 69 virtual void SetFocus(bool enable);
70 virtual void StoreFocusForFrame(WebFrame* frame); 70 virtual void StoreFocusForFrame(WebFrame* frame);
71 virtual bool ImeSetComposition(int string_type, 71 virtual bool ImeSetComposition(int string_type,
72 int cursor_position, 72 int cursor_position,
73 int target_start, 73 int target_start,
74 int target_end, 74 int target_end,
75 const std::wstring& ime_string); 75 const std::wstring& ime_string);
76 virtual bool ImeUpdateStatus(bool* enable_ime, 76 virtual bool ImeUpdateStatus(bool* enable_ime,
77 gfx::Rect* caret_rect); 77 gfx::Rect* caret_rect);
78 virtual void SetTextDirection(WebTextDirection direction);
78 virtual void StopLoading(); 79 virtual void StopLoading();
79 virtual void SetBackForwardListSize(int size); 80 virtual void SetBackForwardListSize(int size);
80 virtual void RestoreFocus(); 81 virtual void RestoreFocus();
81 virtual void SetInitialFocus(bool reverse); 82 virtual void SetInitialFocus(bool reverse);
82 virtual bool DownloadImage(int id, const GURL& image_url, int image_size); 83 virtual bool DownloadImage(int id, const GURL& image_url, int image_size);
83 virtual void SetPreferences(const WebPreferences& preferences); 84 virtual void SetPreferences(const WebPreferences& preferences);
84 virtual const WebPreferences& GetPreferences(); 85 virtual const WebPreferences& GetPreferences();
85 virtual void SetPageEncoding(const std::wstring& encoding_name); 86 virtual void SetPageEncoding(const std::wstring& encoding_name);
86 virtual std::wstring GetMainFrameEncodingName(); 87 virtual std::wstring GetMainFrameEncodingName();
87 virtual void ZoomIn(bool text_only); 88 virtual void ZoomIn(bool text_only);
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 static const WebInputEvent* current_input_event() { 326 static const WebInputEvent* current_input_event() {
326 return g_current_input_event; 327 return g_current_input_event;
327 } 328 }
328 private: 329 private:
329 static const WebInputEvent* g_current_input_event; 330 static const WebInputEvent* g_current_input_event;
330 331
331 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); 332 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl);
332 }; 333 };
333 334
334 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ 335 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__
OLDNEW
« no previous file with comments | « webkit/glue/webtextdirection.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698