| Index: public/platform/WebTeleporter.h
|
| diff --git a/Source/web/resources/pickerCommon.css b/public/platform/WebTeleporter.h
|
| similarity index 78%
|
| copy from Source/web/resources/pickerCommon.css
|
| copy to public/platform/WebTeleporter.h
|
| index 696751a4193641355f6262c1edf33ecd99a855df..c67f80d05da614a56dcc6c3a01f61e4588245539 100644
|
| --- a/Source/web/resources/pickerCommon.css
|
| +++ b/public/platform/WebTeleporter.h
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (C) 2012 Google Inc. All rights reserved.
|
| + * Copyright (C) 2014 Google Inc. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions
|
| @@ -22,14 +22,19 @@
|
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -body {
|
| - -webkit-user-select: none;
|
| - background-color: white;
|
| - font: -webkit-small-control;
|
| - margin: 0;
|
| - overflow: hidden;
|
| -}
|
| +#ifndef WebTeleporter_h
|
| +#define WebTeleporter_h
|
|
|
| -.rtl {
|
| - direction: rtl;
|
| -}
|
| +#include "WebTeleportCallback.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class WebTeleporter {
|
| +public:
|
| + virtual ~WebTeleporter() { }
|
| + virtual void teleportMessage(const WebVector<WebTeleportValue>&, WebTeleportCallback*) = 0;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif
|
|
|