Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: chrome/renderer/search_extension.h

Issue 3312017: Plumbs through window.chrome.setSuggestResult. (Closed)
Patch Set: more comments Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_SEARCH_EXTENSION_H_
6 #define CHROME_RENDERER_SEARCH_EXTENSION_H_
7 #pragma once
8
9 namespace v8 {
10 class Extension;
11 }
12
13 namespace extensions_v8 {
14
15 class SearchExtension {
16 public:
17 // Returns the v8::Extension object handling search bindings. Returns null if
18 // match-preview is not enabled. Caller takes ownership of returned object.
19 static v8::Extension* Get();
20 };
21
22 } // namespace extensions_v8
23
24 #endif // CHROME_RENDERER_SEARCH_EXTENSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698