• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "chrome_frame/chrome_frame_plugin.h"
6 
7 #include "chrome/common/automation_messages.h"
8 
ChromeFramePluginGetParamsCoordinates(const MiniContextMenuParams & params,int * x,int * y)9 void ChromeFramePluginGetParamsCoordinates(const MiniContextMenuParams& params,
10                                            int* x,
11                                            int* y) {
12   *x = params.screen_x;
13   *y = params.screen_y;
14 }
15