[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / sessions / session_tab_helper.cc
blob8435649f2385d162062312dc6cc9be7b67e9f671
1 // Copyright (c) 2012 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 "chrome/browser/sessions/session_tab_helper.h"
7 #include "chrome/browser/chrome_notification_types.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/sessions/session_service.h"
10 #include "chrome/browser/sessions/session_service_factory.h"
11 #include "content/public/browser/notification_service.h"
12 #include "content/public/browser/render_view_host.h"
13 #include "content/public/browser/web_contents.h"
14 #include "extensions/common/extension_messages.h"
16 DEFINE_WEB_CONTENTS_USER_DATA_KEY(SessionTabHelper);
18 SessionTabHelper::SessionTabHelper(content::WebContents* contents)
19 : content::WebContentsObserver(contents) {
22 SessionTabHelper::~SessionTabHelper() {
25 void SessionTabHelper::SetWindowID(const SessionID& id) {
26 window_id_ = id;
28 // Extension code in the renderer holds the ID of the window that hosts it.
29 // Notify it that the window ID changed.
30 web_contents()->GetRenderViewHost()->Send(
31 new ExtensionMsg_UpdateBrowserWindowId(
32 web_contents()->GetRenderViewHost()->GetRoutingID(), id.id()));
35 void SessionTabHelper::RenderViewCreated(
36 content::RenderViewHost* render_view_host) {
37 render_view_host->Send(
38 new ExtensionMsg_UpdateBrowserWindowId(render_view_host->GetRoutingID(),
39 window_id_.id()));
42 void SessionTabHelper::UserAgentOverrideSet(const std::string& user_agent) {
43 #if defined(ENABLE_SESSION_SERVICE)
44 Profile* profile =
45 Profile::FromBrowserContext(web_contents()->GetBrowserContext());
46 SessionService* session = SessionServiceFactory::GetForProfile(profile);
47 if (session)
48 session->SetTabUserAgentOverride(window_id(), session_id(), user_agent);
49 #endif