Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2054)

Unified Diff: athena/extensions/shell/athena_shell_app_delegate.cc

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: athena/extensions/shell/athena_shell_app_delegate.cc
diff --git a/athena/extensions/shell/athena_shell_app_delegate.cc b/athena/extensions/shell/athena_shell_app_delegate.cc
deleted file mode 100644
index 28043011d9bbf7cf0457a573844711db6d4f69d2..0000000000000000000000000000000000000000
--- a/athena/extensions/shell/athena_shell_app_delegate.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright 2014 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 "athena/extensions/shell/athena_shell_app_delegate.h"
-
-#include "content/public/browser/web_contents.h"
-#include "extensions/shell/browser/media_capture_util.h"
-
-namespace athena {
-
-AthenaShellAppDelegate::AthenaShellAppDelegate() {
-}
-
-AthenaShellAppDelegate::~AthenaShellAppDelegate() {
-}
-
-void AthenaShellAppDelegate::InitWebContents(
- content::WebContents* web_contents) {
- // TODO(oshima): Enable Favicon, Printing, e c. See
- // athena_chrome_app_delegate.cc.
- NOTIMPLEMENTED();
-}
-
-content::ColorChooser* AthenaShellAppDelegate::ShowColorChooser(
- content::WebContents* web_contents,
- SkColor initial_color) {
- NOTIMPLEMENTED();
- return nullptr;
-}
-
-void AthenaShellAppDelegate::RunFileChooser(
- content::WebContents* tab,
- const content::FileChooserParams& params) {
- NOTIMPLEMENTED();
-}
-
-void AthenaShellAppDelegate::RequestMediaAccessPermission(
- content::WebContents* web_contents,
- const content::MediaStreamRequest& request,
- const content::MediaResponseCallback& callback,
- const extensions::Extension* extension) {
- extensions::media_capture_util::GrantMediaStreamRequest(
- web_contents, request, callback, extension);
-}
-
-bool AthenaShellAppDelegate::CheckMediaAccessPermission(
- content::WebContents* web_contents,
- const GURL& security_origin,
- content::MediaStreamType type,
- const extensions::Extension* extension) {
- extensions::media_capture_util::VerifyMediaAccessPermission(type, extension);
- return true;
-}
-
-void AthenaShellAppDelegate::SetWebContentsBlocked(
- content::WebContents* web_contents,
- bool blocked) {
- NOTIMPLEMENTED();
-}
-} // namespace athena
« no previous file with comments | « athena/extensions/shell/athena_shell_app_delegate.h ('k') | athena/extensions/shell/athena_shell_app_window_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698