blob: 82a8ed913a543f00bd69c9ca35a4d2c0e5cf94fb (
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
|
// Copyright (c) 2010 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 CHROME_RENDERER_SEARCHBOX_EXTENSION_H_
#define CHROME_RENDERER_SEARCHBOX_EXTENSION_H_
#pragma once
#include "base/basictypes.h"
namespace v8 {
class Extension;
}
namespace WebKit {
class WebFrame;
}
namespace extensions_v8 {
// Reference implementation of the SearchBox API as described in:
// http://dev.chromium.org/searchbox
class SearchBoxExtension {
public:
// Returns the v8::Extension object handling searchbox bindings. Returns null
// if match-preview is not enabled. Caller takes ownership of returned object.
static v8::Extension* Get();
static void DispatchChange(WebKit::WebFrame* frame);
static void DispatchSubmit(WebKit::WebFrame* frame);
static void DispatchCancel(WebKit::WebFrame* frame);
static void DispatchResize(WebKit::WebFrame* frame);
static bool PageSupportsInstant(WebKit::WebFrame* frame);
private:
DISALLOW_COPY_AND_ASSIGN(SearchBoxExtension);
};
} // namespace extensions_v8
#endif // CHROME_RENDERER_SEARCHBOX_EXTENSION_H_
|