diff options
author | Kristian Monsen <kristianm@google.com> | 2011-06-28 21:49:31 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2011-07-08 17:55:00 +0100 |
commit | ddb351dbec246cf1fab5ec20d2d5520909041de1 (patch) | |
tree | 158e3fb57bdcac07c7f1e767fde3c70687c9fbb1 /chrome/browser/gears_integration.h | |
parent | 6b92e04f5f151c896e3088e86f70db7081009308 (diff) | |
download | external_chromium-ddb351dbec246cf1fab5ec20d2d5520909041de1.zip external_chromium-ddb351dbec246cf1fab5ec20d2d5520909041de1.tar.gz external_chromium-ddb351dbec246cf1fab5ec20d2d5520909041de1.tar.bz2 |
Merge Chromium at r12.0.742.93: Initial merge by git
Change-Id: Ic5ee2fec31358bbee305f7e915442377bfa6cda6
Diffstat (limited to 'chrome/browser/gears_integration.h')
-rw-r--r-- | chrome/browser/gears_integration.h | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/chrome/browser/gears_integration.h b/chrome/browser/gears_integration.h deleted file mode 100644 index 3c20555..0000000 --- a/chrome/browser/gears_integration.h +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2006-2008 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 CHROME_BROWSER_GEARS_INTEGRATION_H__ -#define CHROME_BROWSER_GEARS_INTEGRATION_H__ -#pragma once - -#include "base/callback.h" -#include "base/string16.h" -#include "chrome/common/gears_api.h" -#include "ui/gfx/native_widget_types.h" - -// TODO(michaeln): Rework this interface to match how other first class -// citizens of chrome are structured, as a GearsService with an accessor -// available via browser.gears_service(). - -class CPCommandInterface; -class GURL; -class SkBitmap; -struct WebApplicationInfo; - -// We use this in place of GearsShortcutData so we can keep browser-specific -// data on the structure. -struct GearsCreateShortcutData : public GearsShortcutData2 { - CPCommandInterface* command_interface; -}; - -// Called when the Gears Settings button is pressed. |parent_wnd| is the -// window the Gears Settings dialog should be parented to. -void GearsSettingsPressed(gfx::NativeWindow parent_wnd); - -// Calls into the Gears API to create a shortcut with the given parameters. -// 'app_info' is the optional information provided by the page. If any info is -// missing, we fallback to the given fallback params. 'fallback_icon' must be a -// 16x16 favicon. 'callback' will be called with a value indicating whether the -// shortcut has been created successfully. -typedef Callback2<const GearsShortcutData2&, bool>::Type - GearsCreateShortcutCallback; - -void GearsCreateShortcut(const WebApplicationInfo& app_info, - const string16& fallback_name, - const GURL& fallback_url, - const SkBitmap& fallback_icon, - GearsCreateShortcutCallback* callback); - -// Call into Gears to query the list of shortcuts. Results will be returned -// asynchronously via the callback. The callback's arguments will be NULL -// if there was an error. -typedef Callback1<GearsShortcutList*>::Type GearsQueryShortcutsCallback; - -void GearsQueryShortcuts(GearsQueryShortcutsCallback* callback); - -// When the Gears shortcut database is modified, the main thread is notified -// via the NotificationService, NOTIFY_WEB_APP_INSTALL_CHANGED. - -#endif // CHROME_BROWSER_GEARS_INTEGRATION_H__ |