[Mac] Implement Ambient Light API
[chromium-blink-merge.git] / athena / content / chrome / web_activity_helpers.cc
blob8f1c4c08b7025e4610b8a3b7c327a51fd3c2dd1b
1 // Copyright 2014 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.
5 #include "athena/content/web_activity_helpers.h"
7 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
8 #include "chrome/browser/extensions/tab_helper.h"
10 namespace athena {
12 void AttachWebActivityHelpers(content::WebContents* contents) {
13 // TODO(pkotwicz): Call TabHelpers::AttachTabHelpers()
14 extensions::ChromeExtensionWebContentsObserver::CreateForWebContents(
15 contents);
16 extensions::TabHelper::CreateForWebContents(contents);
19 } // namespace athena