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

Unified Diff: apps/app_delegate.h

Issue 486153002: Move AppWindow related classes to extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
« no previous file with comments | « apps/DEPS ('k') | apps/app_web_contents_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/app_delegate.h
diff --git a/apps/app_delegate.h b/apps/app_delegate.h
deleted file mode 100644
index bb7f2a4067f77dccf1579111a33e54782e35cef4..0000000000000000000000000000000000000000
--- a/apps/app_delegate.h
+++ /dev/null
@@ -1,74 +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.
-
-#ifndef APPS_APP_DELEGATE_H_
-#define APPS_APP_DELEGATE_H_
-
-#include "content/public/common/media_stream_request.h"
-#include "third_party/skia/include/core/SkColor.h"
-#include "ui/base/window_open_disposition.h"
-#include "ui/gfx/image/image_skia.h"
-
-namespace content {
-class BrowserContext;
-class ColorChooser;
-struct FileChooserParams;
-struct OpenURLParams;
-class WebContents;
-}
-
-namespace extensions {
-class Extension;
-}
-
-namespace gfx {
-class Rect;
-}
-
-namespace apps {
-
-// Interface to give packaged apps access to services in the browser, for things
-// like handling links and showing UI prompts to the user.
-class AppDelegate {
- public:
- virtual ~AppDelegate() {}
-
- // General initialization.
- virtual void InitWebContents(content::WebContents* web_contents) = 0;
-
- // Link handling.
- virtual content::WebContents* OpenURLFromTab(
- content::BrowserContext* context,
- content::WebContents* source,
- const content::OpenURLParams& params) = 0;
- virtual void AddNewContents(content::BrowserContext* context,
- content::WebContents* new_contents,
- WindowOpenDisposition disposition,
- const gfx::Rect& initial_pos,
- bool user_gesture,
- bool* was_blocked) = 0;
-
- // Feature support.
- virtual content::ColorChooser* ShowColorChooser(
- content::WebContents* web_contents,
- SkColor initial_color) = 0;
- virtual void RunFileChooser(content::WebContents* tab,
- const content::FileChooserParams& params) = 0;
- virtual void RequestMediaAccessPermission(
- content::WebContents* web_contents,
- const content::MediaStreamRequest& request,
- const content::MediaResponseCallback& callback,
- const extensions::Extension* extension) = 0;
- virtual int PreferredIconSize() = 0;
- virtual gfx::ImageSkia GetAppDefaultIcon() = 0;
-
- // Web contents modal dialog support.
- virtual void SetWebContentsBlocked(content::WebContents* web_contents,
- bool blocked) = 0;
- virtual bool IsWebContentsVisible(content::WebContents* web_contents) = 0;
-};
-
-} // namespace apps
-
-#endif // APPS_APP_DELEGATE_H_
« no previous file with comments | « apps/DEPS ('k') | apps/app_web_contents_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698