blob: a237bce22d93ecdd93dae4ca441b1f36f4087d33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (c) 2008 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.
#ifndef FramelessScrollViewClient_h
#define FramelessScrollViewClient_h
#include "HostWindow.h"
namespace WebCore {
class FramelessScrollViewClient : public HostWindow {
public:
virtual void popupClosed(FramelessScrollView* popup_view) = 0;
};
}
#endif // FramelessScrollViewClient_h
|