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

Side by Side Diff: content/content_common.gypi

Issue 15720007: Move InputEventAckState from port to public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 unified diff | Download patch
« no previous file with comments | « content/common/view_messages.h ('k') | content/port/browser/render_widget_host_view_port.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../build/temp_gyp/googleurl.gyp:googleurl', 8 '../build/temp_gyp/googleurl.gyp:googleurl',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../media/media.gyp:media', 10 '../media/media.gyp:media',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'public/common/file_chooser_params.cc', 44 'public/common/file_chooser_params.cc',
45 'public/common/file_chooser_params.h', 45 'public/common/file_chooser_params.h',
46 'public/common/frame_navigate_params.cc', 46 'public/common/frame_navigate_params.cc',
47 'public/common/frame_navigate_params.h', 47 'public/common/frame_navigate_params.h',
48 'public/common/geoposition.cc', 48 'public/common/geoposition.cc',
49 'public/common/geoposition.h', 49 'public/common/geoposition.h',
50 'public/common/gpu_memory_stats.cc', 50 'public/common/gpu_memory_stats.cc',
51 'public/common/gpu_memory_stats.h', 51 'public/common/gpu_memory_stats.h',
52 'public/common/injection_test_mac.h', 52 'public/common/injection_test_mac.h',
53 'public/common/injection_test_win.h', 53 'public/common/injection_test_win.h',
54 'public/common/input_event_ack_state.h',
54 'public/common/javascript_message_type.h', 55 'public/common/javascript_message_type.h',
55 'public/common/main_function_params.h', 56 'public/common/main_function_params.h',
56 'public/common/media_stream_request.cc', 57 'public/common/media_stream_request.cc',
57 'public/common/media_stream_request.h', 58 'public/common/media_stream_request.h',
58 'public/common/page_transition_types.cc', 59 'public/common/page_transition_types.cc',
59 'public/common/page_transition_types.h', 60 'public/common/page_transition_types.h',
60 'public/common/page_transition_types_list.h', 61 'public/common/page_transition_types_list.h',
61 'public/common/page_type.h', 62 'public/common/page_type.h',
62 'public/common/page_zoom.h', 63 'public/common/page_zoom.h',
63 'public/common/password_form.cc', 64 'public/common/password_form.cc',
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 'common/url_schemes.h', 349 'common/url_schemes.h',
349 'common/utility_messages.h', 350 'common/utility_messages.h',
350 'common/view_messages.h', 351 'common/view_messages.h',
351 'common/view_message_enums.h', 352 'common/view_message_enums.h',
352 'common/webkitplatformsupport_impl.cc', 353 'common/webkitplatformsupport_impl.cc',
353 'common/webkitplatformsupport_impl.h', 354 'common/webkitplatformsupport_impl.h',
354 'common/webmessageportchannel_impl.cc', 355 'common/webmessageportchannel_impl.cc',
355 'common/webmessageportchannel_impl.h', 356 'common/webmessageportchannel_impl.h',
356 'common/worker_messages.h', 357 'common/worker_messages.h',
357 'common/zygote_commands_linux.h', 358 'common/zygote_commands_linux.h',
358 'port/common/input_event_ack_state.h',
359 'public/common/common_param_traits.cc', 359 'public/common/common_param_traits.cc',
360 'public/common/common_param_traits.h', 360 'public/common/common_param_traits.h',
361 'public/common/common_param_traits_macros.h', 361 'public/common/common_param_traits_macros.h',
362 'public/common/content_client.cc', 362 'public/common/content_client.cc',
363 'public/common/content_client.h', 363 'public/common/content_client.h',
364 'public/common/window_container_type.cc', 364 'public/common/window_container_type.cc',
365 'public/common/window_container_type.h', 365 'public/common/window_container_type.h',
366 ], 366 ],
367 'conditions': [ 367 'conditions': [
368 ['OS=="ios"', { 368 ['OS=="ios"', {
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 562 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
563 '<(output)', 563 '<(output)',
564 '<(PRODUCT_DIR)', 564 '<(PRODUCT_DIR)',
565 ], 565 ],
566 'msvs_cygwin_shell': 1, 566 'msvs_cygwin_shell': 1,
567 }, 567 },
568 ] 568 ]
569 }], 569 }],
570 ], 570 ],
571 } 571 }
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/port/browser/render_widget_host_view_port.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698