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

Side by Side Diff: extensions/renderer/guest_view/extensions_guest_view_container_dispatcher.h

Issue 1543053002: Switch to standard integer types in extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-extensions-browser
Patch Set: Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "base/macros.h"
5 #include "components/guest_view/renderer/guest_view_container_dispatcher.h" 6 #include "components/guest_view/renderer/guest_view_container_dispatcher.h"
6 7
7 namespace extensions { 8 namespace extensions {
8 9
9 class ExtensionsGuestViewContainerDispatcher 10 class ExtensionsGuestViewContainerDispatcher
10 : public guest_view::GuestViewContainerDispatcher { 11 : public guest_view::GuestViewContainerDispatcher {
11 public: 12 public:
12 ExtensionsGuestViewContainerDispatcher(); 13 ExtensionsGuestViewContainerDispatcher();
13 ~ExtensionsGuestViewContainerDispatcher() override; 14 ~ExtensionsGuestViewContainerDispatcher() override;
14 15
15 private: 16 private:
16 // guest_view::GuestViewContainerDispatcher implementation. 17 // guest_view::GuestViewContainerDispatcher implementation.
17 bool HandlesMessage(const IPC::Message& message) override; 18 bool HandlesMessage(const IPC::Message& message) override;
18 19
19 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher); 20 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher);
20 }; 21 };
21 22
22 } // namespace extensions 23 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698