OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/auto_reset.h" | 12 #include "base/auto_reset.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/debug/alias.h" | 14 #include "base/debug/alias.h" |
15 #include "base/debug/asan_invalid_access.h" | 15 #include "base/debug/asan_invalid_access.h" |
16 #include "base/debug/crash_logging.h" | 16 #include "base/debug/crash_logging.h" |
17 #include "base/debug/dump_without_crashing.h" | 17 #include "base/debug/dump_without_crashing.h" |
18 #include "base/files/file.h" | 18 #include "base/files/file.h" |
19 #include "base/i18n/char_iterator.h" | 19 #include "base/i18n/char_iterator.h" |
20 #include "base/logging.h" | 20 #include "base/logging.h" |
21 #include "base/macros.h" | 21 #include "base/macros.h" |
22 #include "base/memory/ptr_util.h" | 22 #include "base/memory/ptr_util.h" |
23 #include "base/memory/shared_memory.h" | 23 #include "base/memory/shared_memory.h" |
24 #include "base/memory/weak_ptr.h" | 24 #include "base/memory/weak_ptr.h" |
25 #include "base/metrics/field_trial.h" | 25 #include "base/metrics/field_trial.h" |
26 #include "base/metrics/histogram.h" | 26 #include "base/metrics/histogram_macros.h" |
27 #include "base/process/process.h" | 27 #include "base/process/process.h" |
28 #include "base/stl_util.h" | 28 #include "base/stl_util.h" |
29 #include "base/strings/string16.h" | 29 #include "base/strings/string16.h" |
30 #include "base/strings/utf_string_conversions.h" | 30 #include "base/strings/utf_string_conversions.h" |
31 #include "base/threading/thread_task_runner_handle.h" | 31 #include "base/threading/thread_task_runner_handle.h" |
32 #include "base/time/time.h" | 32 #include "base/time/time.h" |
33 #include "base/trace_event/trace_event_argument.h" | 33 #include "base/trace_event/trace_event_argument.h" |
34 #include "build/build_config.h" | 34 #include "build/build_config.h" |
35 #include "cc/base/switches.h" | 35 #include "cc/base/switches.h" |
36 #include "content/child/appcache/appcache_dispatcher.h" | 36 #include "content/child/appcache/appcache_dispatcher.h" |
(...skipping 6295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6332 // event target. Potentially a Pepper plugin will receive the event. | 6332 // event target. Potentially a Pepper plugin will receive the event. |
6333 // In order to tell whether a plugin gets the last mouse event and which it | 6333 // In order to tell whether a plugin gets the last mouse event and which it |
6334 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 6334 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets |
6335 // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 6335 // the event, it will notify us via DidReceiveMouseEvent() and set itself as |
6336 // |pepper_last_mouse_event_target_|. | 6336 // |pepper_last_mouse_event_target_|. |
6337 pepper_last_mouse_event_target_ = nullptr; | 6337 pepper_last_mouse_event_target_ = nullptr; |
6338 #endif | 6338 #endif |
6339 } | 6339 } |
6340 | 6340 |
6341 } // namespace content | 6341 } // namespace content |
OLD | NEW |