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

Side by Side Diff: chrome/test/data/webui/chrome_send_browsertest.h

Issue 679273002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_ 5 #ifndef CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_
6 #define CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_ 6 #define CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_
7 7
8 #include "chrome/test/base/web_ui_browser_test.h" 8 #include "chrome/test/base/web_ui_browser_test.h"
9 #include "content/public/browser/web_ui_message_handler.h" 9 #include "content/public/browser/web_ui_message_handler.h"
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
(...skipping 26 matching lines...) Expand all
37 virtual content::WebUIMessageHandler* GetMockMessageHandler() override; 37 virtual content::WebUIMessageHandler* GetMockMessageHandler() override;
38 38
39 DISALLOW_COPY_AND_ASSIGN(ChromeSendWebUITest); 39 DISALLOW_COPY_AND_ASSIGN(ChromeSendWebUITest);
40 }; 40 };
41 41
42 // Test fixture for verifying chrome.send messages are passed through. This 42 // Test fixture for verifying chrome.send messages are passed through. This
43 // class DOES expect to receive the "checkSend" message. 43 // class DOES expect to receive the "checkSend" message.
44 class ChromeSendPassthroughWebUITest : public ChromeSendWebUITest { 44 class ChromeSendPassthroughWebUITest : public ChromeSendWebUITest {
45 public: 45 public:
46 ChromeSendPassthroughWebUITest(); 46 ChromeSendPassthroughWebUITest();
47 virtual ~ChromeSendPassthroughWebUITest(); 47 ~ChromeSendPassthroughWebUITest() override;
48 48
49 private: 49 private:
50 void SetUpOnMainThread() override; 50 void SetUpOnMainThread() override;
51 51
52 DISALLOW_COPY_AND_ASSIGN(ChromeSendPassthroughWebUITest); 52 DISALLOW_COPY_AND_ASSIGN(ChromeSendPassthroughWebUITest);
53 }; 53 };
54 54
55 #endif // CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_ 55 #endif // CHROME_TEST_DATA_WEBUI_CHROME_SEND_BROWSERTEST_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/net/websocket_unittest.cc ('k') | chrome/test/data/webui/history_ui_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698