diff options
author | Ben Murdoch <benm@google.com> | 2010-07-29 17:14:53 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-08-04 14:29:45 +0100 |
commit | c407dc5cd9bdc5668497f21b26b09d988ab439de (patch) | |
tree | 7eaf8707c0309516bdb042ad976feedaf72b0bb1 /chrome/browser/automation/chrome_frame_automation_provider.h | |
parent | 0998b1cdac5733f299c12d88bc31ef9c8035b8fa (diff) | |
download | external_chromium-c407dc5cd9bdc5668497f21b26b09d988ab439de.zip external_chromium-c407dc5cd9bdc5668497f21b26b09d988ab439de.tar.gz external_chromium-c407dc5cd9bdc5668497f21b26b09d988ab439de.tar.bz2 |
Merge Chromium src@r53293
Change-Id: Ia79acf8670f385cee48c45b0a75371d8e950af34
Diffstat (limited to 'chrome/browser/automation/chrome_frame_automation_provider.h')
-rw-r--r-- | chrome/browser/automation/chrome_frame_automation_provider.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/chrome/browser/automation/chrome_frame_automation_provider.h b/chrome/browser/automation/chrome_frame_automation_provider.h new file mode 100644 index 0000000..0ab6a8f --- /dev/null +++ b/chrome/browser/automation/chrome_frame_automation_provider.h @@ -0,0 +1,41 @@ +// Copyright (c) 2006-2009 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 "base/scoped_ptr.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); + + // IPC::Channel::Listener overrides. + virtual void 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); + + private: + DISALLOW_COPY_AND_ASSIGN(ChromeFrameAutomationProvider); +}; + +#endif // CHROME_BROWSER_AUTOMATION_CHROME_FRAME_AUTOMATION_PROVIDER_H_ + |