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

Unified Diff: chrome/browser/automation/automation_provider_unittest.cc

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/automation_provider_unittest.cc
diff --git a/chrome/browser/automation/automation_provider_unittest.cc b/chrome/browser/automation/automation_provider_unittest.cc
deleted file mode 100644
index 3458158847e8d114d16b60d56bdea552df5d5905..0000000000000000000000000000000000000000
--- a/chrome/browser/automation/automation_provider_unittest.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2011 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.
-
-#include "chrome/browser/automation/chrome_frame_automation_provider.h"
-#include "chrome/test/base/testing_browser_process.h"
-#include "content/public/test/test_browser_thread.h"
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-using content::BrowserThread;
-
-class MockChromeFrameAutomationProvider
- : public ChromeFrameAutomationProvider {
- public:
- explicit MockChromeFrameAutomationProvider(Profile* profile)
- : ChromeFrameAutomationProvider(profile) {}
-
- virtual ~MockChromeFrameAutomationProvider() {}
-
- MOCK_METHOD1(OnUnhandledMessage,
- void (const IPC::Message& message)); // NOLINT
-};
-
-typedef testing::Test AutomationProviderTest;
-
-TEST_F(AutomationProviderTest, TestInvalidChromeFrameMessage) {
- MessageLoop message_loop;
- content::TestBrowserThread ui_thread(BrowserThread::UI, &message_loop);
-
- IPC::Message bad_msg(1, -1, IPC::Message::PRIORITY_NORMAL);
-
- scoped_refptr<MockChromeFrameAutomationProvider>
- mock(new MockChromeFrameAutomationProvider(NULL));
-
- EXPECT_CALL(*mock, OnUnhandledMessage(testing::Property(&IPC::Message::type,
- -1))).Times(1);
- mock->OnMessageReceived(bad_msg);
-}
-
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/browser/automation/automation_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698