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

Side by Side Diff: headless/public/web_frame.h

Issue 1461693003: [headless] Initial skeleton of headless/public/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More minor fixes Created 5 years 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 2015 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 HEADLESS_PUBLIC_WEB_FRAME_H_
6 #define HEADLESS_PUBLIC_WEB_FRAME_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "base/values.h"
11 #include "headless/public/headless_export.h"
12
13 namespace headless {
14
15 class WebDocument;
16
17 // Class representing a frame in a web page (e.g. main frame or an iframe).
18 // Should be accessed from renderer main thread.
19 class HEADLESS_EXPORT WebFrame {
20 public:
21 virtual ~WebFrame() {}
22
23 using ScriptExecutionCallback =
24 base::Callback<void(const std::vector<scoped_ptr<base::Value>>&)>;
25
26 // Schedule given script for execution.
27 virtual void ExecuteScript(const std::string& source_code) = 0;
28
29 // Execute given script and return its result.
30 // Returned value will be converted to json (base::Value).
31 // Special effects to bear in mind:
32 // - Boolean will be converted to base::FundamentalValue (no surprises here).
33 // - Number will be converted to base::FundamentalValue.
34 // - Array will be converted to base::ListValue.
35 // Note: All non-numerical properties will be omitted
36 // (e.g. "array = [1, 2, 3]; array['property'] = 'value'; return array"
37 // will return [1, 2, 3]).
38 // - Object will be converted to base::DictionaryValue
39 // Note: Only string can be key in base::DictionaryValue, so all non-string
40 // properties will be omitted
41 // (e.g. "obj = Object(); obj['key'] = 'value'; obj[0] = 42;" will return
42 // {"key":"value"}).
43 virtual void ExecuteScriptAndReturnValue(
44 const std::string& source_code,
45 const ScriptExecutionCallback& callback) = 0;
46
47 private:
48 DISALLOW_COPY_AND_ASSIGN(WebFrame);
49 };
50
51 } // namespace headless
52
53 #endif // HEADLESS_PUBLIC_WEB_FRAME_H_
OLDNEW
« headless/public/web_contents.h ('K') | « headless/public/web_contents.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698