Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_ANDROID_EXTENSIONS_EXTENSION_VIEW_ANDROID_H_ | |
| 6 #define CHROME_BROWSER_UI_ANDROID_EXTENSIONS_EXTENSION_VIEW_ANDROID_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "ui/gfx/size.h" | |
| 10 | |
| 11 class Browser; | |
| 12 | |
| 13 class ExtensionViewAndroid { | |
| 14 public: | |
| 15 Browser* browser() const { return NULL; } | |
|
Yaron
2012/02/22 19:34:24
I think even dummy implementations are supposed to
David Trainor- moved to gerrit
2012/02/22 21:31:33
This is inlined in the mac/gtk. Trying to stay co
| |
| 16 | |
| 17 void UpdatePreferredSize(const gfx::Size& new_size); | |
| 18 void RenderViewCreated(); | |
| 19 | |
| 20 private: | |
| 21 ExtensionViewAndroid() { } | |
|
Yaron
2012/02/22 19:34:24
Need: DISALLOW_COPY_AND_ASSIGN(ExtensionViewAndroi
David Trainor- moved to gerrit
2012/02/22 21:31:33
Done. Good catch :).
| |
| 22 }; | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_ANDROID_EXTENSIONS_EXTENSION_VIEW_ANDROID_H_ | |
| 25 | |
|
Yaron
2012/02/22 19:34:24
Remove empty line
David Trainor- moved to gerrit
2012/02/22 21:31:33
Done.
| |
| OLD | NEW |