| OLD | NEW |
| 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 #include "chrome/browser/renderer_host/render_view_host.h" | 5 #include "chrome/browser/renderer_host/render_view_host.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "chrome/common/notification_details.h" | 32 #include "chrome/common/notification_details.h" |
| 33 #include "chrome/common/notification_service.h" | 33 #include "chrome/common/notification_service.h" |
| 34 #include "chrome/common/notification_type.h" | 34 #include "chrome/common/notification_type.h" |
| 35 #include "chrome/common/render_messages.h" | 35 #include "chrome/common/render_messages.h" |
| 36 #include "chrome/common/result_codes.h" | 36 #include "chrome/common/result_codes.h" |
| 37 #include "chrome/common/chrome_constants.h" | 37 #include "chrome/common/chrome_constants.h" |
| 38 #include "chrome/common/thumbnail_score.h" | 38 #include "chrome/common/thumbnail_score.h" |
| 39 #include "chrome/common/url_constants.h" | 39 #include "chrome/common/url_constants.h" |
| 40 #include "net/base/net_util.h" | 40 #include "net/base/net_util.h" |
| 41 #include "third_party/skia/include/core/SkBitmap.h" | 41 #include "third_party/skia/include/core/SkBitmap.h" |
| 42 #include "webkit/api/public/WebFindOptions.h" | 42 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" |
| 43 #include "webkit/glue/form_field_values.h" | 43 #include "webkit/glue/form_field_values.h" |
| 44 | 44 |
| 45 #if defined(OS_WIN) | 45 #if defined(OS_WIN) |
| 46 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288. | 46 // TODO(port): accessibility not yet implemented. See http://crbug.com/8288. |
| 47 #include "chrome/browser/browser_accessibility_manager.h" | 47 #include "chrome/browser/browser_accessibility_manager.h" |
| 48 // TODO(port): The compact language detection library works only for Windows. | 48 // TODO(port): The compact language detection library works only for Windows. |
| 49 #include "third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win/cl
d_unicodetext.h" | 49 #include "third_party/cld/bar/toolbar/cld/i18n/encodings/compact_lang_det/win/cl
d_unicodetext.h" |
| 50 #endif | 50 #endif |
| 51 | 51 |
| 52 using base::TimeDelta; | 52 using base::TimeDelta; |
| (...skipping 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1776 #endif | 1776 #endif |
| 1777 } | 1777 } |
| 1778 | 1778 |
| 1779 void RenderViewHost::OnCSSInserted() { | 1779 void RenderViewHost::OnCSSInserted() { |
| 1780 delegate_->DidInsertCSS(); | 1780 delegate_->DidInsertCSS(); |
| 1781 } | 1781 } |
| 1782 | 1782 |
| 1783 void RenderViewHost::UpdateBrowserWindowId(int window_id) { | 1783 void RenderViewHost::UpdateBrowserWindowId(int window_id) { |
| 1784 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); | 1784 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); |
| 1785 } | 1785 } |
| OLD | NEW |