This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unresolved linking errors on Windows
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
chromium_src/chrome/browser/ui/tab_contents/core_tab_helper.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// 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 "chrome/browser/ui/tab_contents/core_tab_helper.h" | ||
|
||
DEFINE_WEB_CONTENTS_USER_DATA_KEY(CoreTabHelper); | ||
|
||
void CoreTabHelper::OnCloseStarted() { | ||
NOTREACHED(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// 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 "chrome/browser/ui/tabs/tab_utils.h" | ||
|
||
namespace chrome { | ||
|
||
bool CanToggleAudioMute(content::WebContents* contents) { | ||
NOTREACHED(); | ||
return false; | ||
} | ||
|
||
TabMutedResult SetTabAudioMuted(content::WebContents* contents, | ||
bool mute, | ||
TabMutedReason reason, | ||
const std::string& extension_id) { | ||
NOTREACHED(); | ||
return TabMutedResult::FAIL_NOT_ENABLED; | ||
} | ||
|
||
bool AreAllTabsMuted(const TabStripModel& tab_strip, | ||
const std::vector<int>& indices) { | ||
NOTREACHED(); | ||
return false; | ||
} | ||
|
||
} // namespace chrome |