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

Unified Diff: chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.h

Issue 577453002: Rename ChromeBrowserPluginDelegate to GuestViewContainer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved GuestViewContainer to ENABLE_EXTENSIONS guard Created 6 years, 3 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 | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.h
diff --git a/chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.h b/chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.h
deleted file mode 100644
index fa08dbd6e9bafb7534817121afca17eb4c5dbe5a..0000000000000000000000000000000000000000
--- a/chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.h
+++ /dev/null
@@ -1,39 +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 CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_
-#define CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_
-
-#include "content/public/renderer/browser_plugin_delegate.h"
-
-#include "content/public/renderer/render_frame_observer.h"
-#include "ipc/ipc_listener.h"
-
-// TODO(lazyboy): This should live under /extensions.
-class ChromeBrowserPluginDelegate : public content::BrowserPluginDelegate,
- public content::RenderFrameObserver {
- public:
- ChromeBrowserPluginDelegate(content::RenderFrame* render_frame,
- const std::string& mime_type);
- virtual ~ChromeBrowserPluginDelegate();
-
- // BrowserPluginDelegate implementation.
- virtual void SetElementInstanceID(int element_instance_id) OVERRIDE;
- virtual void DidFinishLoading() OVERRIDE;
- virtual void DidReceiveData(const char* data, int data_length) OVERRIDE;
-
- // RenderFrameObserver override.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
-
- private:
- void OnCreateMimeHandlerViewGuestACK(int browser_plugin_delegate);
-
- const std::string mime_type_;
- int element_instance_id_;
- std::string html_string_;
-
- DISALLOW_COPY_AND_ASSIGN(ChromeBrowserPluginDelegate);
-};
-
-#endif // CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/browser_plugin/chrome_browser_plugin_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698