| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_ENCODING_MENU_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_ENCODING_MENU_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_ENCODING_MENU_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_ENCODING_MENU_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" // For DISALLOW_COPY_AND_ASSIGN | 13 #include "base/basictypes.h" // For DISALLOW_COPY_AND_ASSIGN |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/string16.h" | 15 #include "base/string16.h" |
| 16 | 16 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 // List of all valid encoding GUI IDs. | 48 // List of all valid encoding GUI IDs. |
| 49 static const int kValidEncodingIds[]; | 49 static const int kValidEncodingIds[]; |
| 50 const int* ValidGUIEncodingIDs(); | 50 const int* ValidGUIEncodingIDs(); |
| 51 int NumValidGUIEncodingIDs(); | 51 int NumValidGUIEncodingIDs(); |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(EncodingMenuController); | 53 DISALLOW_COPY_AND_ASSIGN(EncodingMenuController); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 #endif // CHROME_BROWSER_ENCODING_MENU_CONTROLLER_H_ | 56 #endif // CHROME_BROWSER_UI_TOOLBAR_ENCODING_MENU_CONTROLLER_H_ |
| OLD | NEW |