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

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

Issue 306057: Move SearchableFormData over to the WebKit API. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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/searchable_form_data.cc ('k') | webkit/webkit.gyp » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 <wtf/OwnPtr.h> 8 #include <wtf/OwnPtr.h>
9 #include <wtf/RefCounted.h> 9 #include <wtf/RefCounted.h>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class WebMouseEvent; 42 class WebMouseEvent;
43 class WebMouseWheelEvent; 43 class WebMouseWheelEvent;
44 class WebSettingsImpl; 44 class WebSettingsImpl;
45 } 45 }
46 46
47 namespace webkit_glue { 47 namespace webkit_glue {
48 class ImageResourceFetcher; 48 class ImageResourceFetcher;
49 } 49 }
50 50
51 class AutocompletePopupMenuClient; 51 class AutocompletePopupMenuClient;
52 class SearchableFormData;
53 class WebHistoryItemImpl; 52 class WebHistoryItemImpl;
54 class WebDevToolsAgentImpl; 53 class WebDevToolsAgentImpl;
55 54
56 class WebViewImpl : public WebKit::WebView, public RefCounted<WebViewImpl> { 55 class WebViewImpl : public WebKit::WebView, public RefCounted<WebViewImpl> {
57 public: 56 public:
58 // WebWidget methods: 57 // WebWidget methods:
59 virtual void close(); 58 virtual void close();
60 virtual WebKit::WebSize size() { return size_; } 59 virtual WebKit::WebSize size() { return size_; }
61 virtual void resize(const WebKit::WebSize& new_size); 60 virtual void resize(const WebKit::WebSize& new_size);
62 virtual void layout(); 61 virtual void layout();
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 static const WebKit::WebInputEvent* current_input_event() { 392 static const WebKit::WebInputEvent* current_input_event() {
394 return g_current_input_event; 393 return g_current_input_event;
395 } 394 }
396 private: 395 private:
397 static const WebKit::WebInputEvent* g_current_input_event; 396 static const WebKit::WebInputEvent* g_current_input_event;
398 397
399 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); 398 DISALLOW_COPY_AND_ASSIGN(WebViewImpl);
400 }; 399 };
401 400
402 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ 401 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/searchable_form_data.cc ('k') | webkit/webkit.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698