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

Unified Diff: chrome/browser/automation/chrome_frame_automation_provider.h

Issue 12220101: Minimal Chrome Frame with Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert install_worker.cc to un-break win64 build 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/automation/chrome_frame_automation_provider.h
diff --git a/chrome/browser/automation/chrome_frame_automation_provider.h b/chrome/browser/automation/chrome_frame_automation_provider.h
deleted file mode 100644
index 99f3297e7d46d60b8379741d5a288d5f44fe7213..0000000000000000000000000000000000000000
--- a/chrome/browser/automation/chrome_frame_automation_provider.h
+++ /dev/null
@@ -1,45 +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.
-
-// This implements a browser-side endpoint for ChromeFrame UI automation
-// activity. The client-side endpoint is implemented by
-// ChromeFrameAutomationClient.
-// The entire lifetime of this object should be contained within that of
-// the BrowserProcess
-
-#ifndef CHROME_BROWSER_AUTOMATION_CHROME_FRAME_AUTOMATION_PROVIDER_H_
-#define CHROME_BROWSER_AUTOMATION_CHROME_FRAME_AUTOMATION_PROVIDER_H_
-
-#include "base/basictypes.h"
-#include "chrome/browser/automation/automation_provider.h"
-
-class Profile;
-
-// This class services automation IPC requests coming in from ChromeFrame
-// instances.
-class ChromeFrameAutomationProvider : public AutomationProvider {
- public:
- explicit ChromeFrameAutomationProvider(Profile* profile);
- virtual ~ChromeFrameAutomationProvider();
-
- // IPC::Listener overrides.
- virtual bool OnMessageReceived(const IPC::Message& message);
-
- protected:
- // This function is called when we receive an invalid message type.
- virtual void OnUnhandledMessage(const IPC::Message& message);
-
- // Returns true if the message received is a valid chrome frame message.
- bool IsValidMessage(uint32 type);
-
- // Called to release an instance's ref count on the global BrowserProcess
- // instance.
- static void ReleaseBrowserProcess();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ChromeFrameAutomationProvider);
-};
-
-#endif // CHROME_BROWSER_AUTOMATION_CHROME_FRAME_AUTOMATION_PROVIDER_H_
-
« no previous file with comments | « chrome/browser/automation/automation_provider_win.cc ('k') | chrome/browser/automation/chrome_frame_automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698