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_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_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/gfx/point.h" | 13 #include "base/gfx/point.h" |
13 #include "base/gfx/rect.h" | 14 #include "base/gfx/rect.h" |
14 #include "base/id_map.h" | 15 #include "base/id_map.h" |
15 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
16 #include "base/timer.h" | 17 #include "base/timer.h" |
17 #include "base/values.h" | 18 #include "base/values.h" |
18 #include "build/build_config.h" | 19 #include "build/build_config.h" |
19 #ifdef CHROME_PERSONALIZATION | 20 #ifdef CHROME_PERSONALIZATION |
20 #include "chrome/personalization/personalization.h" | 21 #include "chrome/personalization/personalization.h" |
21 #endif | 22 #endif |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 IDMap<WebFrame> pending_extension_callbacks_; | 831 IDMap<WebFrame> pending_extension_callbacks_; |
831 | 832 |
832 // The currently selected text. This is currently only updated on Linux, where | 833 // The currently selected text. This is currently only updated on Linux, where |
833 // it's for the selection clipboard. | 834 // it's for the selection clipboard. |
834 std::string selection_text_; | 835 std::string selection_text_; |
835 | 836 |
836 DISALLOW_COPY_AND_ASSIGN(RenderView); | 837 DISALLOW_COPY_AND_ASSIGN(RenderView); |
837 }; | 838 }; |
838 | 839 |
839 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 840 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |