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

Unified Diff: chrome/browser/ui/intents/web_intent_picker_model_observer.h

Issue 12225076: Delete most web intents code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 10 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: chrome/browser/ui/intents/web_intent_picker_model_observer.h
diff --git a/chrome/browser/ui/intents/web_intent_picker_model_observer.h b/chrome/browser/ui/intents/web_intent_picker_model_observer.h
deleted file mode 100644
index db5fa2028238efab6753fa2470823dae0012835d..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/intents/web_intent_picker_model_observer.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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.
-
-#ifndef CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_MODEL_OBSERVER_H_
-#define CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_MODEL_OBSERVER_H_
-
-#include "base/string16.h"
-
-class GURL;
-class WebIntentPickerModel;
-
-// Observer for changes to the WebIntentPickerModel.
-class WebIntentPickerModelObserver {
- public:
- virtual ~WebIntentPickerModelObserver() {}
-
- // Called when |model| has changed.
- virtual void OnModelChanged(WebIntentPickerModel* model) = 0;
-
- // Called when the favicon at |index| in |model| has changed.
- virtual void OnFaviconChanged(WebIntentPickerModel* model, size_t index) = 0;
-
- // Called when the extension with |extension_id| has its icon changed.
- virtual void OnExtensionIconChanged(WebIntentPickerModel* model,
- const std::string& extension_id) = 0;
-
- // Called when the inline disposition should be displayed for |model|.
- virtual void OnInlineDisposition(const string16& title,
- const GURL& url) = 0;
-};
-
-#endif // CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_MODEL_OBSERVER_H_
« no previous file with comments | « chrome/browser/ui/intents/web_intent_picker_model.cc ('k') | chrome/browser/ui/intents/web_intent_picker_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698