blob: 0c2731ba6a8afa2b435529cf9860a75fd641a9f8 (
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
49
|
// 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.
#include "content/renderer/do_not_track_bindings.h"
#include "content/renderer/render_view_impl.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
#include "v8/include/v8.h"
using WebKit::WebFrame;
namespace content {
namespace {
v8::Handle<v8::Value> GetDoNotTrack(v8::Local<v8::String> property,
const v8::AccessorInfo& info) {
WebFrame* frame = WebFrame::frameForCurrentContext();
if (!frame)
return v8::Null();
RenderViewImpl* view = RenderViewImpl::FromWebView(frame->view());
if (!view)
return v8::Null();
if (view->enable_do_not_track())
return v8::String::New("1");
return v8::Null();
}
} // namespace
void InjectDoNotTrackBindings(WebFrame* frame) {
v8::HandleScope handle_scope;
v8::Handle<v8::Context> v8_context = frame->mainWorldScriptContext();
if (v8_context.IsEmpty())
return;
v8::Context::Scope scope(v8_context);
v8::Handle<v8::Object> global = v8_context->Global();
v8::Handle<v8::Object> navigator =
global->Get(v8::String::New("navigator"))->ToObject();
if (navigator.IsEmpty())
return;
navigator->SetAccessor(v8::String::New("doNotTrack"), GetDoNotTrack);
}
} // namespace content
|