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

Side by Side Diff: content/child/npapi/webplugin_delegate_impl_win.cc

Issue 22723004: Get rid of webkit/plugins/plugin_constants.* and move them to content/public/common/content_constan… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
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 #include "content/child/npapi/webplugin_delegate_impl.h" 5 #include "content/child/npapi/webplugin_delegate_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 10 matching lines...) Expand all
21 #include "base/version.h" 21 #include "base/version.h"
22 #include "base/win/iat_patch_function.h" 22 #include "base/win/iat_patch_function.h"
23 #include "base/win/registry.h" 23 #include "base/win/registry.h"
24 #include "base/win/windows_version.h" 24 #include "base/win/windows_version.h"
25 #include "content/child/npapi/plugin_instance.h" 25 #include "content/child/npapi/plugin_instance.h"
26 #include "content/child/npapi/plugin_lib.h" 26 #include "content/child/npapi/plugin_lib.h"
27 #include "content/child/npapi/plugin_stream_url.h" 27 #include "content/child/npapi/plugin_stream_url.h"
28 #include "content/child/npapi/webplugin.h" 28 #include "content/child/npapi/webplugin.h"
29 #include "content/child/npapi/webplugin_ime_win.h" 29 #include "content/child/npapi/webplugin_ime_win.h"
30 #include "content/common/plugin_constants_win.h" 30 #include "content/common/plugin_constants_win.h"
31 #include "content/public/common/content_constants.h"
31 #include "skia/ext/platform_canvas.h" 32 #include "skia/ext/platform_canvas.h"
32 #include "third_party/WebKit/public/web/WebInputEvent.h" 33 #include "third_party/WebKit/public/web/WebInputEvent.h"
33 #include "ui/base/win/dpi.h" 34 #include "ui/base/win/dpi.h"
34 #include "ui/base/win/hwnd_util.h" 35 #include "ui/base/win/hwnd_util.h"
35 #include "webkit/common/cursors/webcursor.h" 36 #include "webkit/common/cursors/webcursor.h"
36 #include "webkit/plugins/plugin_constants.h"
37 37
38 using WebKit::WebKeyboardEvent; 38 using WebKit::WebKeyboardEvent;
39 using WebKit::WebInputEvent; 39 using WebKit::WebInputEvent;
40 using WebKit::WebMouseEvent; 40 using WebKit::WebMouseEvent;
41 41
42 namespace content { 42 namespace content {
43 43
44 namespace { 44 namespace {
45 45
46 const wchar_t kWebPluginDelegateProperty[] = L"WebPluginDelegateProperty"; 46 const wchar_t kWebPluginDelegateProperty[] = L"WebPluginDelegateProperty";
(...skipping 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 case WM_RBUTTONUP: 1480 case WM_RBUTTONUP:
1481 ::ReleaseCapture(); 1481 ::ReleaseCapture();
1482 break; 1482 break;
1483 1483
1484 default: 1484 default:
1485 break; 1485 break;
1486 } 1486 }
1487 } 1487 }
1488 1488
1489 } // namespace content 1489 } // namespace content
OLDNEW
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_gtk.cc ('k') | content/common/content_constants_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698