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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// Copyright (c) 2011 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.
#include "chrome/renderer/searchbox.h"
#include "chrome/common/render_messages.h"
#include "chrome/renderer/searchbox_extension.h"
#include "content/renderer/render_view.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
using WebKit::WebView;
SearchBox::SearchBox(RenderView* render_view)
: RenderViewObserver(render_view),
RenderViewObserverTracker<SearchBox>(render_view),
verbatim_(false),
selection_start_(0),
selection_end_(0) {
}
SearchBox::~SearchBox() {
}
void SearchBox::SetSuggestions(const std::vector<std::string>& suggestions,
InstantCompleteBehavior behavior) {
// Explicitly allow empty vector to be sent to the browser.
render_view()->Send(new ViewHostMsg_SetSuggestions(
render_view()->routing_id(), render_view()->page_id(), suggestions,
behavior));
}
bool SearchBox::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(SearchBox, message)
IPC_MESSAGE_HANDLER(ViewMsg_SearchBoxChange, OnChange)
IPC_MESSAGE_HANDLER(ViewMsg_SearchBoxSubmit, OnSubmit)
IPC_MESSAGE_HANDLER(ViewMsg_SearchBoxCancel, OnCancel)
IPC_MESSAGE_HANDLER(ViewMsg_SearchBoxResize, OnResize)
IPC_MESSAGE_HANDLER(ViewMsg_DetermineIfPageSupportsInstant,
OnDetermineIfPageSupportsInstant)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void SearchBox::OnChange(const string16& value,
bool verbatim,
int selection_start,
int selection_end) {
value_ = value;
verbatim_ = verbatim;
selection_start_ = selection_start;
selection_end_ = selection_end;
if (!render_view()->webview() || !render_view()->webview()->mainFrame())
return;
extensions_v8::SearchBoxExtension::DispatchChange(
render_view()->webview()->mainFrame());
}
void SearchBox::OnSubmit(const string16& value, bool verbatim) {
value_ = value;
verbatim_ = verbatim;
if (render_view()->webview() && render_view()->webview()->mainFrame()) {
extensions_v8::SearchBoxExtension::DispatchSubmit(
render_view()->webview()->mainFrame());
}
Reset();
}
void SearchBox::OnCancel() {
verbatim_ = false;
if (render_view()->webview() && render_view()->webview()->mainFrame()) {
extensions_v8::SearchBoxExtension::DispatchCancel(
render_view()->webview()->mainFrame());
}
Reset();
}
void SearchBox::OnResize(const gfx::Rect& bounds) {
rect_ = bounds;
if (!render_view()->webview() || !render_view()->webview()->mainFrame())
return;
extensions_v8::SearchBoxExtension::DispatchResize(
render_view()->webview()->mainFrame());
}
void SearchBox::OnDetermineIfPageSupportsInstant(const string16& value,
bool verbatim,
int selection_start,
int selection_end) {
value_ = value;
verbatim_ = verbatim;
selection_start_ = selection_start;
selection_end_ = selection_end;
bool result = extensions_v8::SearchBoxExtension::PageSupportsInstant(
render_view()->webview()->mainFrame());
render_view()->Send(new ViewHostMsg_InstantSupportDetermined(
render_view()->routing_id(), render_view()->page_id(), result));
}
void SearchBox::Reset() {
verbatim_ = false;
value_ = string16();
selection_start_ = selection_end_ = 0;
rect_ = gfx::Rect();
}
|