| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "athena/content/web_activity_helpers.h" | |
| 6 | |
| 7 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" | |
| 8 #include "chrome/browser/extensions/tab_helper.h" | |
| 9 | |
| 10 namespace athena { | |
| 11 | |
| 12 void AttachWebActivityHelpers(content::WebContents* contents) { | |
| 13 // TODO(pkotwicz): Call TabHelpers::AttachTabHelpers() | |
| 14 extensions::ChromeExtensionWebContentsObserver::CreateForWebContents( | |
| 15 contents); | |
| 16 extensions::TabHelper::CreateForWebContents(contents); | |
| 17 } | |
| 18 | |
| 19 } // namespace athena | |
| OLD | NEW |