| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/renderer_host/render_view_host_impl.h" | 5 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 #include "content/public/common/result_codes.h" | 72 #include "content/public/common/result_codes.h" |
| 73 #include "content/public/common/url_constants.h" | 73 #include "content/public/common/url_constants.h" |
| 74 #include "content/public/common/url_utils.h" | 74 #include "content/public/common/url_utils.h" |
| 75 #include "net/base/filename_util.h" | 75 #include "net/base/filename_util.h" |
| 76 #include "net/base/net_util.h" | 76 #include "net/base/net_util.h" |
| 77 #include "net/base/network_change_notifier.h" | 77 #include "net/base/network_change_notifier.h" |
| 78 #include "net/url_request/url_request_context_getter.h" | 78 #include "net/url_request/url_request_context_getter.h" |
| 79 #include "storage/browser/fileapi/isolated_context.h" | 79 #include "storage/browser/fileapi/isolated_context.h" |
| 80 #include "third_party/skia/include/core/SkBitmap.h" | 80 #include "third_party/skia/include/core/SkBitmap.h" |
| 81 #include "ui/base/touch/touch_device.h" | 81 #include "ui/base/touch/touch_device.h" |
| 82 #include "ui/base/touch/touch_enabled.h" | |
| 83 #include "ui/base/ui_base_switches.h" | 82 #include "ui/base/ui_base_switches.h" |
| 83 #include "ui/events/base_event_utils.h" |
| 84 #include "ui/gfx/image/image_skia.h" | 84 #include "ui/gfx/image/image_skia.h" |
| 85 #include "ui/gfx/native_widget_types.h" | 85 #include "ui/gfx/native_widget_types.h" |
| 86 #include "ui/native_theme/native_theme_switches.h" | 86 #include "ui/native_theme/native_theme_switches.h" |
| 87 #include "url/url_constants.h" | 87 #include "url/url_constants.h" |
| 88 | 88 |
| 89 #if defined(OS_WIN) | 89 #if defined(OS_WIN) |
| 90 #include "base/win/win_util.h" | 90 #include "base/win/win_util.h" |
| 91 #include "ui/gfx/platform_font_win.h" | 91 #include "ui/gfx/platform_font_win.h" |
| 92 #include "ui/gfx/win/dpi.h" | 92 #include "ui/gfx/win/dpi.h" |
| 93 #endif | 93 #endif |
| (...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 } else { | 1431 } else { |
| 1432 render_view_ready_on_process_launch_ = true; | 1432 render_view_ready_on_process_launch_ = true; |
| 1433 } | 1433 } |
| 1434 } | 1434 } |
| 1435 | 1435 |
| 1436 void RenderViewHostImpl::RenderViewReady() { | 1436 void RenderViewHostImpl::RenderViewReady() { |
| 1437 delegate_->RenderViewReady(this); | 1437 delegate_->RenderViewReady(this); |
| 1438 } | 1438 } |
| 1439 | 1439 |
| 1440 } // namespace content | 1440 } // namespace content |
| OLD | NEW |