OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "components/proximity_auth/webui/proximity_auth_webui_handler.h" | |
6 | |
7 #include "base/bind.h" | |
8 #include "base/values.h" | |
9 #include "content/public/browser/web_contents.h" | |
10 #include "content/public/browser/web_ui.h" | |
Ilya Sherman
2015/04/14 00:25:44
Are any of these includes needed?
Tim Song
2015/04/14 06:00:12
Done. Not at the moment. I'll add them back once w
| |
11 | |
12 namespace proximity_auth { | |
13 | |
14 ProximityAuthWebUIHandler::ProximityAuthWebUIHandler() { | |
15 } | |
16 | |
17 ProximityAuthWebUIHandler::~ProximityAuthWebUIHandler() { | |
18 } | |
19 | |
20 void ProximityAuthWebUIHandler::RegisterMessages() { | |
21 } | |
22 | |
23 } // namespace proximity_auth | |
OLD | NEW |