Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(700)

Unified Diff: content/renderer/input/input_event_filter_ipc_names.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/input/input_event_filter_ipc_names.cc
diff --git a/content/renderer/input/input_event_filter_ipc_names.cc b/content/renderer/input/input_event_filter_ipc_names.cc
new file mode 100644
index 0000000000000000000000000000000000000000..55d685b9fa9e4674227099b0ecbe4ad16f82c508
--- /dev/null
+++ b/content/renderer/input/input_event_filter_ipc_names.cc
@@ -0,0 +1,53 @@
+// Copyright (c) 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/renderer/input/input_event_filter.h"
+
+#include <tuple>
+#include <utility>
+
+#include "base/auto_reset.h"
+#include "base/bind.h"
+#include "base/debug/crash_logging.h"
+#include "base/location.h"
+#include "base/memory/ptr_util.h"
+#include "base/single_thread_task_runner.h"
+#include "base/threading/thread_task_runner_handle.h"
+#include "base/trace_event/trace_event.h"
+#include "content/common/input_messages.h"
+#include "content/common/view_messages.h"
+#include "content/public/common/content_features.h"
+#include "content/public/common/content_switches.h"
+#include "content/renderer/input/input_handler_manager.h"
+#include "content/renderer/render_thread_impl.h"
+#include "ipc/ipc_listener.h"
+#include "ipc/ipc_sender.h"
+#include "ui/events/base_event_utils.h"
+#include "ui/events/blink/did_overscroll_params.h"
+#include "ui/events/blink/web_input_event_traits.h"
+#include "ui/gfx/geometry/vector2d_f.h"
+
+
+
+#include "ipc/ipc_message_macros.h"
+
+#include "ipc/ipc_message_null_macros.h"
+#undef IPC_MESSAGE_DECL
+#define IPC_MESSAGE_DECL(name, ...) \
+ case name::ID: \
+ return #name;
+
+const char* GetInputMessageTypeName(const IPC::Message& message) {
+ switch (message.type()) {
+#undef CONTENT_COMMON_INPUT_MESSAGES_H_
+#include "content/common/input_messages.h"
+#ifndef CONTENT_COMMON_INPUT_MESSAGES_H_
+#error "Failed to include content/common/input_messages.h"
+#endif
+ default:
+ NOTREACHED() << "Invalid message type: " << message.type();
+ break;
+ };
+ return "NonInputMsgType";
+}
« no previous file with comments | « content/renderer/input/input_event_filter.cc ('k') | content/renderer/media/media_stream_audio_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698