[Mac] PepperFlash default on canary, opt-in on dev.
[chromium-blink-merge.git] / tools / stats_viewer / OpenDialog.Designer.cs
blob96f01f53e80148e7d333670d64106f8c1b75a07e
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.
5 namespace StatsViewer
7 partial class OpenDialog
9 /// <summary>
10 /// Required designer variable.
11 /// </summary>
12 private System.ComponentModel.IContainer components = null;
14 /// <summary>
15 /// Clean up any resources being used.
16 /// </summary>
17 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
18 protected override void Dispose(bool disposing)
20 if (disposing && (components != null))
22 components.Dispose();
24 base.Dispose(disposing);
27 #region Windows Form Designer generated code
29 /// <summary>
30 /// Required method for Designer support - do not modify
31 /// the contents of this method with the code editor.
32 /// </summary>
33 private void InitializeComponent()
35 this.name_box_ = new System.Windows.Forms.TextBox();
36 this.label1 = new System.Windows.Forms.Label();
37 this.button1 = new System.Windows.Forms.Button();
38 this.SuspendLayout();
39 //
40 // name_box_
41 //
42 this.name_box_.Location = new System.Drawing.Point(108, 25);
43 this.name_box_.Name = "name_box_";
44 this.name_box_.Size = new System.Drawing.Size(180, 20);
45 this.name_box_.TabIndex = 0;
46 this.name_box_.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUp);
47 //
48 // label1
49 //
50 this.label1.AutoSize = true;
51 this.label1.Location = new System.Drawing.Point(12, 28);
52 this.label1.Name = "label1";
53 this.label1.Size = new System.Drawing.Size(91, 13);
54 this.label1.TabIndex = 1;
55 this.label1.Text = "Stats File to Open";
56 //
57 // button1
58 //
59 this.button1.Location = new System.Drawing.Point(108, 61);
60 this.button1.Name = "button1";
61 this.button1.Size = new System.Drawing.Size(75, 23);
62 this.button1.TabIndex = 2;
63 this.button1.Text = "OK";
64 this.button1.UseVisualStyleBackColor = true;
65 this.button1.Click += new System.EventHandler(this.button1_Click);
66 //
67 // OpenDialog
68 //
69 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
70 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
71 this.ClientSize = new System.Drawing.Size(303, 94);
72 this.Controls.Add(this.button1);
73 this.Controls.Add(this.label1);
74 this.Controls.Add(this.name_box_);
75 this.Name = "OpenDialog";
76 this.Text = "OpenDialog";
77 this.ResumeLayout(false);
78 this.PerformLayout();
82 #endregion
84 private System.Windows.Forms.TextBox name_box_;
85 private System.Windows.Forms.Label label1;
86 private System.Windows.Forms.Button button1;