summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_plugin.cc
blob: f665e51e9b0ef1020d9ba528f1de7ad436ce3470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}