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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 #include "content/public/common/content_switches.h" | 52 #include "content/public/common/content_switches.h" |
53 #include "content/public/common/context_menu_params.h" | 53 #include "content/public/common/context_menu_params.h" |
54 #include "content/public/common/result_codes.h" | 54 #include "content/public/common/result_codes.h" |
55 #include "content/public/common/selected_file_info.h" | 55 #include "content/public/common/selected_file_info.h" |
56 #include "content/public/common/url_constants.h" | 56 #include "content/public/common/url_constants.h" |
57 #include "net/base/net_util.h" | 57 #include "net/base/net_util.h" |
58 #include "net/url_request/url_request_context_getter.h" | 58 #include "net/url_request/url_request_context_getter.h" |
59 #include "third_party/skia/include/core/SkBitmap.h" | 59 #include "third_party/skia/include/core/SkBitmap.h" |
60 #include "ui/gfx/native_widget_types.h" | 60 #include "ui/gfx/native_widget_types.h" |
61 #include "webkit/fileapi/isolated_context.h" | 61 #include "webkit/fileapi/isolated_context.h" |
62 #include "webkit/glue/webaccessibility.h" | |
63 #include "webkit/glue/webdropdata.h" | 62 #include "webkit/glue/webdropdata.h" |
64 | 63 |
65 #if defined(OS_WIN) | 64 #if defined(OS_WIN) |
66 #include "base/win/windows_version.h" | 65 #include "base/win/windows_version.h" |
67 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebScreenInfoFact
ory.h" | 66 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebScreenInfoFact
ory.h" |
68 #elif defined(OS_MACOSX) | 67 #elif defined(OS_MACOSX) |
69 #include "content/browser/renderer_host/popup_menu_helper_mac.h" | 68 #include "content/browser/renderer_host/popup_menu_helper_mac.h" |
70 #endif | 69 #endif |
71 | 70 |
72 using base::TimeDelta; | 71 using base::TimeDelta; |
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1851 // can cause navigations to be ignored in OnMsgNavigate. | 1850 // can cause navigations to be ignored in OnMsgNavigate. |
1852 is_waiting_for_beforeunload_ack_ = false; | 1851 is_waiting_for_beforeunload_ack_ = false; |
1853 is_waiting_for_unload_ack_ = false; | 1852 is_waiting_for_unload_ack_ = false; |
1854 } | 1853 } |
1855 | 1854 |
1856 void RenderViewHostImpl::ClearPowerSaveBlockers() { | 1855 void RenderViewHostImpl::ClearPowerSaveBlockers() { |
1857 STLDeleteValues(&power_save_blockers_); | 1856 STLDeleteValues(&power_save_blockers_); |
1858 } | 1857 } |
1859 | 1858 |
1860 } // namespace content | 1859 } // namespace content |
OLD | NEW |