| Index: sky/engine/core/page/Chrome.h
|
| diff --git a/sky/engine/core/page/Chrome.h b/sky/engine/core/page/Chrome.h
|
| deleted file mode 100644
|
| index aae2088c63f9b0c1edde992bd7bfe8e5fbfd3b80..0000000000000000000000000000000000000000
|
| --- a/sky/engine/core/page/Chrome.h
|
| +++ /dev/null
|
| @@ -1,87 +0,0 @@
|
| -/*
|
| - * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
|
| - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
| - * Copyright (C) 2012, Samsung Electronics. All rights reserved.
|
| - *
|
| - * This library is free software; you can redistribute it and/or
|
| - * modify it under the terms of the GNU Library General Public
|
| - * License as published by the Free Software Foundation; either
|
| - * version 2 of the License, or (at your option) any later version.
|
| - *
|
| - * This library is distributed in the hope that it will be useful,
|
| - * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
| - * Library General Public License for more details.
|
| - *
|
| - * You should have received a copy of the GNU Library General Public License
|
| - * along with this library; see the file COPYING.LIB. If not, write to
|
| - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
| - * Boston, MA 02110-1301, USA.
|
| - */
|
| -
|
| -#ifndef SKY_ENGINE_CORE_PAGE_CHROME_H_
|
| -#define SKY_ENGINE_CORE_PAGE_CHROME_H_
|
| -
|
| -#include "sky/engine/core/loader/NavigationPolicy.h"
|
| -#include "sky/engine/core/page/FocusType.h"
|
| -#include "sky/engine/platform/Cursor.h"
|
| -#include "sky/engine/platform/HostWindow.h"
|
| -#include "sky/engine/wtf/Forward.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class ChromeClient;
|
| -class ColorChooser;
|
| -class ColorChooserClient;
|
| -class DateTimeChooser;
|
| -class DateTimeChooserClient;
|
| -class FloatRect;
|
| -class LocalFrame;
|
| -class HitTestResult;
|
| -class IntRect;
|
| -class Node;
|
| -class Page;
|
| -
|
| -struct DateTimeChooserParameters;
|
| -
|
| -class Chrome final : public HostWindow {
|
| -public:
|
| - virtual ~Chrome();
|
| -
|
| - static PassOwnPtr<Chrome> create(ChromeClient*);
|
| -
|
| - ChromeClient& client() { return *m_client; }
|
| -
|
| - // HostWindow methods.
|
| - virtual IntRect rootViewToScreen(const IntRect&) const override;
|
| - virtual blink::WebScreenInfo screenInfo() const override;
|
| -
|
| - virtual void scheduleVisualUpdate() override;
|
| -
|
| - void setCursor(const Cursor&);
|
| -
|
| - void setWindowRect(const FloatRect&) const;
|
| - FloatRect windowRect() const;
|
| -
|
| - FloatRect pageRect() const;
|
| -
|
| - void focus() const;
|
| -
|
| - bool canTakeFocus(FocusType) const;
|
| - void takeFocus(FocusType) const;
|
| -
|
| - void focusedNodeChanged(Node*) const;
|
| -
|
| - void show(NavigationPolicy = NavigationPolicyIgnore) const;
|
| -
|
| - void willBeDestroyed();
|
| -
|
| -private:
|
| - Chrome(ChromeClient*);
|
| -
|
| - ChromeClient* m_client;
|
| -};
|
| -
|
| -}
|
| -
|
| -#endif // SKY_ENGINE_CORE_PAGE_CHROME_H_
|
|
|