OLD | NEW |
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 CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/gfx/rect.h" | 13 #include "base/gfx/rect.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "chrome/browser/renderer_preferences.h" | |
16 #include "chrome/common/native_web_keyboard_event.h" | 15 #include "chrome/common/native_web_keyboard_event.h" |
| 16 #include "chrome/common/renderer_preferences.h" |
17 #include "net/base/load_states.h" | 17 #include "net/base/load_states.h" |
18 #include "webkit/glue/password_form.h" | 18 #include "webkit/glue/password_form.h" |
19 #include "webkit/glue/webpreferences.h" | 19 #include "webkit/glue/webpreferences.h" |
20 #include "webkit/glue/window_open_disposition.h" | 20 #include "webkit/glue/window_open_disposition.h" |
21 | 21 |
22 #include "chrome/browser/extensions/extension_function_dispatcher.h" | 22 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
23 | 23 |
24 class AutofillForm; | 24 class AutofillForm; |
25 class ExtensionFunctionDispatcher; | 25 class ExtensionFunctionDispatcher; |
26 class NavigationEntry; | 26 class NavigationEntry; |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 | 441 |
442 // A find operation in the current page completed. | 442 // A find operation in the current page completed. |
443 virtual void OnFindReply(int request_id, | 443 virtual void OnFindReply(int request_id, |
444 int number_of_matches, | 444 int number_of_matches, |
445 const gfx::Rect& selection_rect, | 445 const gfx::Rect& selection_rect, |
446 int active_match_ordinal, | 446 int active_match_ordinal, |
447 bool final_update) { } | 447 bool final_update) { } |
448 }; | 448 }; |
449 | 449 |
450 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 450 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
OLD | NEW |