blob: e27c770f3c6f0499303b94e4e3b2f6bac2ed7d3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright (c) 2012 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.
// The AppObjectExtension is a v8 extension that creates an object
// at window.chrome.app. This object allows javascript to get details
// on the app state of the page.
// The read-only property app.isInstalled is true if the current page is
// within the extent of an installed, enabled app.
#ifndef CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
#pragma once
#include "base/compiler_specific.h"
#include "chrome/renderer/extensions/chrome_v8_extension.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
class ChromeV8Context;
// Implements the chrome.app JavaScript object.
//
// TODO(aa): Add unit testing for this class.
class AppBindings : public ChromeV8Extension, public ChromeV8ExtensionHandler {
public:
explicit AppBindings(ExtensionDispatcher* dispatcher,
ChromeV8Context* context);
private:
// IPC::Channel::Listener
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
v8::Handle<v8::Value> GetIsInstalled(const v8::Arguments& args);
v8::Handle<v8::Value> Install(const v8::Arguments& args);
v8::Handle<v8::Value> GetDetails(const v8::Arguments& args);
v8::Handle<v8::Value> GetDetailsForFrame(const v8::Arguments& args);
v8::Handle<v8::Value> GetAppNotifyChannel(const v8::Arguments& args);
v8::Handle<v8::Value> GetDetailsForFrameImpl(WebKit::WebFrame* frame);
void OnGetAppNotifyChannelResponse(const std::string& channel_id,
const std::string& error,
int callback_id);
DISALLOW_COPY_AND_ASSIGN(AppBindings);
};
#endif // CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
|