blob: 10634aee4b218435539ee8a1a13c9e47ad525a15 [file] [log] [blame]
jat@google.com5e86cbd2009-08-22 23:59:24 +00001#ifndef __CHECKVERSIONSMESSAGE_H
2#define __CHECKVERSIONSMESSAGE_H
3/*
4 * Copyright 2009 Google Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
7 * use this file except in compliance with the License. You may obtain a copy of
8 * the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 * License for the specific language governing permissions and limitations under
16 * the License.
17 */
18
19#include <string>
20#include "Message.h"
21#include "BrowserChannel.h"
22#include "Value.h"
23
24class HostChannel;
25
26/**
27 * Class representing a CheckVersions message sent to the server.
28 *
29 * This message tells the server the range or protocol versions this plugin
30 * understands as well as the hosted.html version (so stale copies of it can
31 * be detected).
32 */
33class CheckVersionsMessage : public Message {
34public:
35 static const char TYPE = MESSAGE_TYPE_CHECK_VERSIONS;
36private:
37 int minVersion;
38 int maxVersion;
39 const std::string& hostedHtmlVersion;
40
41protected:
42 CheckVersionsMessage(int minVersion, int maxVersion,
43 const std::string& hostedHtmlVersion) : minVersion(minVersion),
44 maxVersion(maxVersion), hostedHtmlVersion(hostedHtmlVersion) {}
45
46public:
47 ~CheckVersionsMessage();
48 virtual char getType() const;
49
50 const std::string& getHostedHtmlVersion() const { return hostedHtmlVersion; }
51
52 static CheckVersionsMessage* receive(HostChannel& channel);
53 static bool send(HostChannel& channel, int minVersion, int maxVersion,
54 const std::string& hostedHtmlVersion);
55};
56#endif