summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_plugin.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-09 07:15:35 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-09 07:15:35 +0000
commita22f7e069020486f1d93510b46b488b40dcb57c7 (patch)
tree65c408219af0405df7914877a944cc2c58540cc1 /chrome_frame/chrome_frame_plugin.cc
parent91c521b79fcd8a696f5a08013269cb1fd2b7c394 (diff)
downloadchromium_src-a22f7e069020486f1d93510b46b488b40dcb57c7.zip
chromium_src-a22f7e069020486f1d93510b46b488b40dcb57c7.tar.gz
chromium_src-a22f7e069020486f1d93510b46b488b40dcb57c7.tar.bz2
Remove includes of message headers in headers.
Review URL: http://codereview.chromium.org/6458004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74257 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_plugin.cc')
-rw-r--r--chrome_frame/chrome_frame_plugin.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome_frame/chrome_frame_plugin.cc b/chrome_frame/chrome_frame_plugin.cc
new file mode 100644
index 0000000..f665e51
--- /dev/null
+++ b/chrome_frame/chrome_frame_plugin.cc
@@ -0,0 +1,14 @@
+// Copyright (c) 2011 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 "chrome_frame/chrome_frame_plugin.h"
+
+#include "chrome/common/automation_messages.h"
+
+void ChromeFramePluginGetParamsCoordinates(const MiniContextMenuParams& params,
+ int* x,
+ int* y) {
+ *x = params.screen_x;
+ *y = params.screen_y;
+}